get rid of unused files in my home dir

TBR=r
DELTA=9270  (0 added, 9270 deleted, 0 changed)
OCL=28958
CL=28958
This commit is contained in:
Robert Griesemer 2009-05-15 19:15:45 -07:00
parent 66cc0d6f60
commit e8c1e2b93a
4 changed files with 0 additions and 46 deletions

View File

@ -1,7 +0,0 @@
package A
import (
B "b";
C "c";
D "d";
)

View File

@ -1,13 +0,0 @@
package B
import C "c"
import D "d"
type T1 C.T1;
type T2 D.T2;
var (
v0 D.T1;
v1 C.T1;
v2 *C.F1;
)

View File

@ -1,7 +0,0 @@
package C
import "d"
type T1 D.T1;
type T2 D.T2;
type F1 (a D.T1, b *D.T2);

View File

@ -1,19 +0,0 @@
package D
type T0 int
type T1 struct {
n int;
a, b T0;
}
type T2 struct {
u, v float;
}
func (obj *T2) M1(u, v float) {
}
func F0(a int, b T0) int {
return a + b;
}