diff options
author | Russ Cox <rsc@golang.org> | 2009-08-12 13:18:54 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-08-12 13:18:54 -0700 |
commit | 5ff5b6823c8a023da5c9d6ccc2effe7fad8447f6 (patch) | |
tree | 5c642bf4fc333537144c9e43fc2bc06bce4f8a52 /test/interface/recursive.go | |
parent | 49e5e06757c42612171d4f176ed74a30db9a0d38 (diff) | |
download | golang-5ff5b6823c8a023da5c9d6ccc2effe7fad8447f6.tar.gz |
convert non-pkg go files to whole-package compilation.
mostly removing forward declarations.
R=r
DELTA=138 (2 added, 127 deleted, 9 changed)
OCL=33068
CL=33099
Diffstat (limited to 'test/interface/recursive.go')
-rw-r--r-- | test/interface/recursive.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/interface/recursive.go b/test/interface/recursive.go index 707cfcb8c..87509838f 100644 --- a/test/interface/recursive.go +++ b/test/interface/recursive.go @@ -19,6 +19,5 @@ type I2 interface { } type T int -func (t T) bar() I1; func (t T) foo() I2 { return t } func (t T) bar() I1 { return t } |