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