blob: b8d22a274542f4e39932362253661bbfd9f25369 [file] [log] [blame]
// @dart = 2.9
library test;
class C {
void set x(dynamic value) {}
dynamic y;
void test() {}
}
void test(C c, dynamic d) {}
main() {}