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.
21 lines
384 B
Plaintext
21 lines
384 B
Plaintext
garble -debugdir ./test1 build
|
|
exists 'test1/test/imported/imported.go' 'test1/main/main.go'
|
|
! grep ImportedFunc $WORK/test1/test/imported/imported.go
|
|
! grep ImportedFunc $WORK/test1/main/main.go
|
|
|
|
-- go.mod --
|
|
module test
|
|
-- main.go --
|
|
package main
|
|
|
|
import "test/imported"
|
|
|
|
func main() {
|
|
imported.ImportedFunc()
|
|
}
|
|
|
|
-- imported/imported.go --
|
|
package imported
|
|
|
|
func ImportedFunc() {}
|