summaryrefslogtreecommitdiffstats
path: root/src/cmd/go/testdata/script/embed_brackets.txt
blob: ec17ff3827afd662fd45c100a94d091a13bfb2d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# issue 53314
[GOOS:windows] skip
cd [pkg]
go build

-- [pkg]/go.mod --
module m

go 1.19
-- [pkg]/x.go --
package p

import _ "embed"

//go:embed t.txt
var S string

-- [pkg]//t.txt --