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