Your IP : 172.28.240.42


Current Path : /usr/local/go/src/cmd/go/testdata/script/
Upload File :
Current File : //usr/local/go/src/cmd/go/testdata/script/list_export_embed.txt

# 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