blob: bd0fbf1cd469f1aef8bf95a1c8dfc51473371067 [file] [log] [blame]
class A {
String get foo => "foo";
}
class B {
int bar() => 42;
}
enum E1 with A { one, two }
enum E2 with A, B { one, two }
enum E3 with M { one, two }
expectEquals(x, y) {}
expectThrows(void Function() f) {}
main() {}
mixin M {
void set callOnAssignment(void Function() f) {}
}
void throwOnCall() {}