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