...
Text file
src/cmd/go/testdata/mod/rsc.io_!c!g!o_v1.0.0.txt
1rsc.io/CGO v1.0.0
2
3-- .mod --
4module rsc.io/CGO
5-- .info --
6{"Version":"v1.0.0","Name":"","Short":"","Time":"2018-08-01T18:23:45Z"}
7-- go.mod --
8module rsc.io/CGO
9-- cgo.go --
10// Copyright 2018 The Go Authors. All rights reserved.
11// Use of this source code is governed by a BSD-style
12// license that can be found in the LICENSE file.
13
14package CGO
15
16// #cgo CFLAGS: -I${SRCDIR}
17import "C"
18
19var V = 0
View as plain text