github.com/gagliardetto/golang-go@v0.0.0-20201020153340-53909ea70814/cmd/go/testdata/script/build_import_cycle.txt (about) 1 ! go build selfimport 2 stderr -count=1 'import cycle not allowed' 3 4 go list -e -f '{{.Error}}' selfimport # Don't hang forever 5 stdout -count=1 'import cycle not allowed' 6 7 -- selfimport/selfimport.go -- 8 package selfimport 9 10 import "selfimport"