aboutsummaryrefslogtreecommitdiff
path: root/src/go/printer/testdata/declarations.input
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/printer/testdata/declarations.input')
-rw-r--r--src/go/printer/testdata/declarations.input15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/go/printer/testdata/declarations.input b/src/go/printer/testdata/declarations.input
index a0a3783b84..50386eb8d5 100644
--- a/src/go/printer/testdata/declarations.input
+++ b/src/go/printer/testdata/declarations.input
@@ -999,3 +999,18 @@ func _(struct {
x int
y int
}) // no extra comma between } and )
+
+// alias declarations
+
+type c0 struct{}
+type c1 = C
+type c2 = struct{ x int}
+type c3 = p.C
+type (
+ s struct{}
+ a = A
+ b = A
+ c = foo
+ d = interface{}
+ ddd = p.Foo
+) \ No newline at end of file