Commit 54c8948f authored by Robert Griesemer's avatar Robert Griesemer

- added import/export test cases

R=r
OCL=13723
CL=13723
parent 57fcdcca
package A
import (
B "b";
C "c";
D "d";
)
package B
import C "c"
import D "d"
export type T1 C.T1;
export type T2 D.T2;
export var (
v0 D.T1;
v1 C.T1;
v2 *C.F1;
)
package C
import "d"
export type T1 D.T1;
export type T2 D.T2;
export type F1 func (a D.T1, b *D.T2);
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) {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment