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

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

View as plain text