Sign in
go
/
go.git
/
refs/heads/master
/
.
/
src
/
cmd
/
go
/
testdata
/
script
/
cgo_g3.txt
blob: ada9a8c6914036e0146ad2a131c82239aa2f43d3 [
file
] [
log
] [
blame
] [
edit
]
[!cgo] skip
# Test that -g3 works with cgo.
env CGO_CFLAGS=-g3
go build
-- go.mod --
module cgog3
go 1.25
-- m.go --
package main
import "os/user"
func main() {
user.Current()
}