Source file src/cmd/cgo/internal/testgodefs/testdata/issue38649.go
1 // Copyright 2020 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 //go:build ignore 6 7 package main 8 9 /* 10 struct Issue38649 { int x; }; 11 #define issue38649 struct Issue38649 12 */ 13 import "C" 14 15 type issue38649 C.issue38649 16