1 // Copyright 2013 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package cgotest 6 7 /* 8 #include "issue4339.h" 9 */ 10 import "C" 11 12 import "testing" 13 14 func test4339(t *testing.T) { 15 C.handle4339(&C.exported4339) 16 } 17