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