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