...

Text file src/golang.org/x/exp/cmd/gorelease/testdata/cgo/cgo.test

Documentation: golang.org/x/exp/cmd/gorelease/testdata/cgo

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

View as plain text