Commit bebd22f8 authored by Robert Griesemer's avatar Robert Griesemer

fix build

R=rsc
CC=golang-dev
https://golang.org/cl/1815042
parent 345f9c9e
......@@ -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
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment