blob: 843823e57de5ff218c8305fd8e08683619836788 [file] [log] [blame]
// @dart = 2.9
library test;
class Test1 {
int t;
void test() {}
}
class Test2 {
num t;
void test() {}
}
class Test3 {
double t;
void test3() {}
}
double getDouble() => 0.0;
int getInt() => 0;
main() {}
num getNum() => 0;