...

Text file src/cmd/compile/testdata/script/embedbad.txt

Documentation: cmd/compile/testdata/script

     1# Check that compiler does not silently crash at bad embed error.
     2
     3! go build
     4stderr 'multiple files for type string'
     5stderr 'multiple files for type \[\]byte'
     6
     7-- go.mod --
     8module m
     9
    10-- x.go --
    11package p
    12
    13import _ "embed"
    14
    15//go:embed x.go go.mod
    16var s string
    17
    18//go:embed x.go go.mod
    19var b []byte

View as plain text