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