From bebd22f8e045676b1d902013ff87ab75c13c3d63 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Mon, 12 Jul 2010 14:53:28 -0700 Subject: [PATCH] fix build R=rsc CC=golang-dev https://golang.org/cl/1815042 --- test/fixedbugs/bug243.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/fixedbugs/bug243.go b/test/fixedbugs/bug243.go index 690e0a1bc2..357f22eb27 100644 --- a/test/fixedbugs/bug243.go +++ b/test/fixedbugs/bug243.go @@ -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 } -- 2.50.0