blob: 6eb1323d8146ba95d582671c5a51fe8228a8bfec [file] [log] [blame]
// @dart = 2.9
library test;
class C {
dynamic get x => null;
dynamic y;
void test() {}
}
void test(C c, dynamic d) {}
main() {}