blob: ed2a536e41e2b5cbd9e8440446686fdeb32bfbf3 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
typedef FunctionReturningInt = () core::int;
static method main() dynamic {
function f() core::num
return 0;
if(f is () core::int) {
f;
}
}