library test; | |
B? topLevelVariable2; | |
B topLevelVariable = throw ''; | |
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 ''; | |
static B? staticVariable2; | |
static B staticVariable = throw ''; | |
} | |
class C extends B {} | |
main() {} | |
void test_staticVariable() {} | |
void test_topLevelVariable() {} |