blob: 7736aedae515129f2ead79e6903d2f2a0aa17b53 [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;
static void test(Test t) {}
}
main() {}