blob: 40fbf9fe96fba6fcadaaacc54e0bc95774181545 [file] [log] [blame]
// @dart = 2.9
library test;
class C {
C(this.f);
dynamic f;
}
main() {}
void g(C c) {}
void h(int i) {}
void test() {}