1
0
mirror of https://github.com/golang/go synced 2024-10-04 04:21:22 -06:00
go/usr/gri/gosrc/test/d.go
Robert Griesemer 54c8948f7f - added import/export test cases
R=r
OCL=13723
CL=13723
2008-08-01 12:14:15 -07:00

16 lines
150 B
Go

package D
type T0 int
export type T1 struct {
n int;
a, b T0;
}
export type T2 struct {
u, v float;
}
export func (obj *T2) M1(u, v float) {
}