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