blob: 3657b813716ddd861c173f28cd3d8e421cf2b718 [file] [log] [blame]
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() {}