blob: 62698848e622c28c7559b3fc54ac589aa19426f4 [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;
}
}