summaryrefslogtreecommitdiff
path: root/test/ken/rob2.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2008-10-07 12:59:54 -0700
committerRuss Cox <rsc@golang.org>2008-10-07 12:59:54 -0700
commit742265298fb639bc5e4ae74ae0a51a8b04201657 (patch)
tree7a11af8c672d2f9dbd3864acd4ffa3af231e8907 /test/ken/rob2.go
parent3b0c74f2b17b2e840bd10e8faea8c1ebfec6df16 (diff)
downloadgolang-742265298fb639bc5e4ae74ae0a51a8b04201657.tar.gz
remove uses of *T as an implicit forward declaration of T
R=gri,r OCL=16648 CL=16652
Diffstat (limited to 'test/ken/rob2.go')
-rw-r--r--test/ken/rob2.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ken/rob2.go b/test/ken/rob2.go
index cca74e57a..7d2eecbf7 100644
--- a/test/ken/rob2.go
+++ b/test/ken/rob2.go
@@ -9,6 +9,12 @@ package main
const nilchar = 0;
+type (
+ Atom struct;
+ List struct;
+ Slist struct;
+)
+
type Atom struct {
str string;
integer int;