blob: da74998085c60a41c2b58fa7dbf528ff2a8e29d2 [file] [log] [blame]
# Regression test for https://go.dev/issue/58885:
# 'go list -json=Export' should not fail due to missing go:embed metadata.
[short] skip 'runs the compiler to produce export data'
go list -json=Export -export .
-- go.mod --
module example
go 1.20
-- example.go --
package example
import _ "embed"
//go:embed example.go
var src string