2012-02-16 21:49:30 -07:00
|
|
|
// run
|
2008-08-01 17:23:16 -06:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type Service struct {
|
2010-03-30 11:34:57 -06:00
|
|
|
rpc [2]int
|
2008-08-01 17:23:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Service) Serve(a int64) {
|
2010-03-30 11:34:57 -06:00
|
|
|
if a != 1234 {
|
|
|
|
print(a, " not 1234\n")
|
|
|
|
panic("fail")
|
|
|
|
}
|
2008-08-01 17:23:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
var arith Service
|
|
|
|
|
|
|
|
func main() {
|
2010-03-30 11:34:57 -06:00
|
|
|
c := make(chan string)
|
|
|
|
a := new(Service)
|
|
|
|
go a.Serve(1234)
|
|
|
|
_ = c
|
2008-08-01 17:23:16 -06:00
|
|
|
}
|