blob: b076c276d1586c9ceaf2fb5a19350653a20cf2af [file] [log] [blame]
library test;
int getInt() => 0;
num getNum() => 0;
double getDouble() => 0.0;
void test1(int t, int? t2) {}
void test2(num t, num? t2, num? t3, num? t4) {}
void test3(double t, double? t2) {}
main() {}