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