github.com/hikaru7719/go@v0.0.0-20181025140707-c8b2ac68906a/src/cmd/go/testdata/script/list_find.txt (about)

     1  # go list -find should not report imports
     2  
     3  go list -f {{.Incomplete}} x/y/z...  # should probably exit non-zero but never has
     4  stdout true
     5  go list -find -f '{{.Incomplete}} {{.Imports}}' x/y/z...
     6  stdout '^false \[\]'
     7  
     8  -- x/y/z/z.go --
     9  package z
    10  import "does/not/exist"