golang.org/x/exp@v0.0.0-20240506185415-9bf2ced13842/cmd/gorelease/testdata/cgo/cgo.test (about) 1 base=none 2 release=v1.0.0 3 -- go.mod -- 4 module example.com/cgo 5 6 go 1.13 7 -- c.go -- 8 package cgo 9 10 // const int x = 12; 11 import "C" 12 13 func X() int { return int(C.x) } 14 -- want -- 15 # summary 16 v1.0.0 is a valid semantic version for this release.