blob: 6c2e869210913042563d0d94c8c0b7f4449f3867 [file] [log] [blame]
class A {
A(this.foo);
int foo;
}
class C<X, Y> {
C(this.x, this.y);
X x;
Y y;
}
expectEquals(x, y) {}
main() {}
test1(dynamic x) {}
test2(dynamic x) {}
typedef B = A;
typedef D<X> = C<X, X>;