...

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

Documentation: cmd/go/testdata/script

     1[short] skip
     2
     3go install -gcflags=-m .
     4stderr 'can inline main'
     5go list -gcflags=-m -f '{{.Stale}}' .
     6stdout 'false'
     7! stderr 'can inline main'
     8
     9-- go.mod --
    10module example.com/foo
    11
    12go 1.20
    13-- main.go --
    14package main
    15
    16func main() {}

View as plain text