github.com/0xKiwi/rules_go@v0.24.3/tests/legacy/cgo_pure/cgo.go (about) 1 //+build cgo 2 3 package cgo_pure 4 5 /* 6 extern const int value; 7 */ 8 import "C" 9 10 var Value = int(C.value)