...

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

Documentation: cmd/go/testdata/script

     1[short] skip # runs go build
     2! go build file.go
     3! stderr 'panic:'
     4! stderr 'runtime error'
     5stderr 'file.go:2:1: repeated //go:debug for panicnil'
     6
     7-- file.go --
     8//go:debug panicnil=1
     9//go:debug panicnil=1
    10
    11package main
    12
    13func main() {
    14}

View as plain text