blob: cc4a77bbbae1729a84f627f15e6f5abd2774e35e [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 '';
void test() {}
}
main() {}