blob: a225c9abf486ed8387f76f69e0df13b8b0b005f6 [file] [log] [blame]
library test;
int getInt() => 0;
num getNum() => 0;
double getDouble() => 0.0;
class Test1 {
int t;
int? t2;
Test1(this.t, this.t2);
void test() {}
}
class Test2 {
num t;
num? t2;
Test2(this.t, this.t2);
void test() {}
}
class Test3 {
double t;
double? t2;
Test3(this.t, this.t2);
void test3() {}
}
main() {}