blob: 85405b3c5d11c5eaa4bf1913095d9e7f3e4ed813 [file] [log] [blame]
library test;
T f<T>() => throw '';
class A {}
class B extends A {
B operator *(B v) => throw '';
B operator +(C v) => throw '';
B operator -(int i) => throw '';
C operator &(A v) => throw '';
}
class C extends B {}
class Test {
B? member2;
B member;
Test(this.member);
static void test(Test t) {}
}
main() {}