aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/import_cycle.txt
blob: 901f43cd276cec54a10b763d625ce13624492c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
env GO111MODULE=off

! go build selfimport
stderr -count=1 'import cycle not allowed'

# 'go list' shouldn't hang forever.
go list -e -json selfimport

-- $GOPATH/src/selfimport/selfimport.go --
package selfimport

import "selfimport"