blob: 86f86c46bc3a0722c36a04c314cdacee5d888694 [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() {}