blob: 7f283603693a988804b731f7bd2d2ec72c4c52e4 [file] [log] [blame]
// @dart = 2.9
library test;
class C {
F get g => null;
dynamic get h => null;
void f() {}
void test() {}
}
main() {}
typedef void F();
void test(C c, F f, dynamic d) {}