aboutsummaryrefslogtreecommitdiff
path: root/src/go/types/testdata/go1_8.src
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/types/testdata/go1_8.src')
-rw-r--r--src/go/types/testdata/go1_8.src11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/go/types/testdata/go1_8.src b/src/go/types/testdata/go1_8.src
new file mode 100644
index 0000000000..3ead1e981b
--- /dev/null
+++ b/src/go/types/testdata/go1_8.src
@@ -0,0 +1,11 @@
+// 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.
+
+// Check Go language version-specific errors.
+
+package go1_8 // go1.8
+
+// type alias declarations
+type any = /* ERROR type aliases requires go1.9 or later */ interface{}
+