1//+build cgo 2 3package cgo_pure 4 5/* 6extern const int value; 7*/ 8import "C" 9 10var Value = int(C.value) 11