blob: e92b01f10be7ad8b01e976066f0cae5f87a7d293 [file] [log] [blame]
int callCount = 0;
abstract class A<X> {
void Function(X) get g;
}
class B implements A<int> {
void Function(int) get g => (int i) => callCount++;
}
void foo(Object o, num value) {}
void main() {}
expect(expected, actual) {}
throws(void Function() f) {}