blob: 16b98f4a37509cb3962928ca98846ef513f5c3fc [file] [log] [blame]
env GO111MODULE=off
# issue 29899: handling files with non-Go extension
go list -e -test -json -- c.c x.go
stdout '"Err": "named files must be .go files: c.c"'
! go list -test -json -- c.c x.go
stderr 'can''t load package: named files must be .go files: c.c'
-- x.go --
package main
-- c.c --
package c