summaryrefslogtreecommitdiffstats
path: root/cmd/gorelease/testdata/cgo/cgo.test
blob: b6cea21be7329a13662b680227db71390101054d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
base=none
release=v1.0.0
-- go.mod --
module example.com/cgo

go 1.13
-- c.go --
package cgo

// const int x = 12;
import "C"

func X() int { return int(C.x) }
-- want --
# summary
v1.0.0 is a valid semantic version for this release.