blob: adecc78baac9415562592d4a61c5c8ee2e02e178 [file] [log] [blame]
// @dart = 2.9
library test;
int getInt() => 0;
num getNum() => 0;
double getDouble() => 0.0;
void test1(int t) {}
void test2(num t) {}
void test3(double t) {}
main() {}