blob: 9202a9927563cf9ef23aa727f3224ad59e62801a [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() {}