...

Text file src/cmd/go/testdata/script/cgo_g3.txt

Documentation: cmd/go/testdata/script

     1[!cgo] skip
     2
     3# Test that -g3 works with cgo.
     4env CGO_CFLAGS=-g3
     5go build
     6
     7-- go.mod --
     8module cgog3
     9
    10go 1.25
    11-- m.go --
    12package main
    13
    14import "os/user"
    15
    16func main() {
    17	user.Current()
    18}

View as plain text