Source file src/cmd/cgo/internal/testshared/testdata/issue62277/issue62277_test.go
1 // Copyright 2023 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 issue62277_test 6 7 import ( 8 "testing" 9 10 "testshared/issue62277/p" 11 ) 12 13 func TestIssue62277(t *testing.T) { 14 t.Log(p.S) 15 t.Log(p.T) 16 } 17