summaryrefslogtreecommitdiffstats
path: root/src/cmd/go/testdata/script/embed_fmt.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go/testdata/script/embed_fmt.txt')
-rw-r--r--src/cmd/go/testdata/script/embed_fmt.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/cmd/go/testdata/script/embed_fmt.txt b/src/cmd/go/testdata/script/embed_fmt.txt
new file mode 100644
index 0000000..8a16afe
--- /dev/null
+++ b/src/cmd/go/testdata/script/embed_fmt.txt
@@ -0,0 +1,22 @@
+# go fmt ignores file not found
+go fmt xnofmt.go
+cmp xnofmt.go xfmt.ref
+! go build xnofmt.go
+stderr 'xnofmt.go:5:12: pattern missing.txt: no matching files found'
+
+-- xnofmt.go --
+package p
+
+import "embed"
+
+//go:embed missing.txt
+var X embed.FS
+-- xfmt.ref --
+package p
+
+import "embed"
+
+//go:embed missing.txt
+var X embed.FS
+-- go.mod --
+module m