2012-02-16 21:49:59 -07:00
|
|
|
// run
|
2010-01-18 17:52:18 -07:00
|
|
|
|
|
|
|
// Copyright 2010 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
|
|
|
|
|
2011-11-01 20:06:05 -06:00
|
|
|
import "errors"
|
2011-03-27 21:39:42 -06:00
|
|
|
|
|
|
|
// Issue 481: closures and var declarations
|
|
|
|
// with multiple variables assigned from one
|
|
|
|
// function call.
|
2010-01-18 17:52:18 -07:00
|
|
|
|
|
|
|
func main() {
|
2011-03-27 21:39:42 -06:00
|
|
|
var listen, _ = Listen("tcp", "127.0.0.1:0")
|
2010-01-18 17:52:18 -07:00
|
|
|
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
var conn, _ = listen.Accept()
|
2010-07-12 15:53:28 -06:00
|
|
|
_ = conn
|
2010-01-18 17:52:18 -07:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2011-11-01 20:06:05 -06:00
|
|
|
var conn, _ = Dial("tcp", "", listen.Addr().Error())
|
2010-07-12 15:53:28 -06:00
|
|
|
_ = conn
|
2010-01-18 17:52:18 -07:00
|
|
|
}
|
2011-03-27 21:39:42 -06:00
|
|
|
|
|
|
|
// Simulated net interface to exercise bug
|
|
|
|
// without involving a real network.
|
|
|
|
type T chan int
|
|
|
|
|
|
|
|
var global T
|
|
|
|
|
|
|
|
func Listen(x, y string) (T, string) {
|
|
|
|
global = make(chan int)
|
|
|
|
return global, y
|
|
|
|
}
|
|
|
|
|
2011-11-01 20:06:05 -06:00
|
|
|
func (t T) Addr() error {
|
|
|
|
return errors.New("stringer")
|
2011-03-27 21:39:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t T) Accept() (int, string) {
|
|
|
|
return <-t, ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func Dial(x, y, z string) (int, string) {
|
|
|
|
global <- 1
|
|
|
|
return 0, ""
|
|
|
|
}
|