Sign in
go
/
tools
/
ad497c6c684b394331c6397db9de415717496b9c
/
.
/
internal
/
lsp
/
analysis
/
embeddirective
/
testdata
/
src
/
a
/
a.go
blob: 4203f6ce248e8ee057180bd4288adc2abeee4d98 [
file
] [
log
] [
blame
]
package a
import (
"fmt"
)
//go:embed embedText // want "The \"embed\" package must be imported when using go:embed directives"
var s string
// This is main function
func main() {
fmt.Println(s)
}