From 81dc0b65b2f6b5b86fa4f4b02a5c26c8956ff3d8 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Fri, 20 Sep 2013 09:40:56 -0700 Subject: [PATCH] test/fixedbugs/bug295.go: fix test in anticipation of future gc fix See also issue 6428. R=r, rsc CC=golang-dev https://golang.org/cl/13794043 --- test/fixedbugs/bug295.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/fixedbugs/bug295.go b/test/fixedbugs/bug295.go index e2e5206ca1..63a12a3a74 100644 --- a/test/fixedbugs/bug295.go +++ b/test/fixedbugs/bug295.go @@ -6,7 +6,9 @@ package main -import . "testing" // defines top-level T +import . "testing" // defines file-level T + +type _ B // make use of package "testing" (but don't refer to T) type S struct { T int -- 2.48.1