You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
garble/testdata/scripts/debugdir.txt

21 lines
369 B
Plaintext

garble -debugdir ./test1 build
exists 'test1/test/imported/z0.go' 'test1/main/z0.go'
! grep ImportedFunc $WORK/test1/test/imported/z0.go
! grep ImportedFunc $WORK/test1/main/z0.go
-- go.mod --
module test
-- main.go --
package main
import "test/imported"
func main() {
imported.ImportedFunc()
}
-- imported/imported.go --
package imported
func ImportedFunc() {}