From 3de593d94bd7c9c1e75afcc45f5ca89b629d5e64 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Wed, 15 May 2013 15:34:47 +1000 Subject: [PATCH] misc/cgo/test: add missing import Fixes windows build. R=golang-dev CC=golang-dev https://golang.org/cl/9429043 --- misc/cgo/test/issue5337w.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc/cgo/test/issue5337w.go b/misc/cgo/test/issue5337w.go index f2719d3d7ec..14720a94d5a 100644 --- a/misc/cgo/test/issue5337w.go +++ b/misc/cgo/test/issue5337w.go @@ -6,4 +6,6 @@ package cgotest +import "testing" + func test5337(t *testing.T) {}