blob: 5918e906060b1c88c9c7d3100fbca9267609d89e [file] [log] [blame]
library test;
import self as self;
import "dart:async" as asy;
import "dart:core" as core;
static method main() dynamic async {
() asy::Future<core::Null> f = () asy::Future<core::Null> async {
return null;
};
asy::Future<dynamic> y = f.call();
asy::Future<core::String> z = f.call();
core::String s = await f.call();
}