aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/install_cgo_excluded.txt
blob: 5a2b46030f12ab80d9023fa2dd956a3db5bd4c19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
env CGO_ENABLED=0

! go install cgotest
stderr 'build constraints exclude all Go files'

-- go.mod --
module cgotest

go 1.16
-- m.go --
package cgotest

import "C"

var _ C.int