diff options
Diffstat (limited to 'test/embedvers.go')
-rw-r--r-- | test/embedvers.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/embedvers.go b/test/embedvers.go new file mode 100644 index 0000000..71f0f22 --- /dev/null +++ b/test/embedvers.go @@ -0,0 +1,12 @@ +// errorcheck -lang=go1.15 + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import _ "embed" + +//go:embed x.txt // ERROR "go:embed requires go1.16 or later" +var x string |