1
0
mirror of https://github.com/golang/go synced 2024-11-11 20:50:23 -07:00

fix build

R=rsc
CC=golang-dev
https://golang.org/cl/1815042
This commit is contained in:
Robert Griesemer 2010-07-12 14:53:28 -07:00
parent 345f9c9eb2
commit bebd22f8e0

View File

@ -8,7 +8,6 @@
package main
import (
"fmt"
"net"
)
@ -18,8 +17,10 @@ func main() {
go func() {
for {
var conn, _ = listen.Accept()
_ = conn
}
}()
var conn, _ = net.Dial("tcp", "", listen.Addr().String())
_ = conn
}