blob: 6f16193bc70f71a96b2f1a1f3b1f9de1004c6d1f [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 = throw '';
static void test(Test t) {}
}
main() {}