blob: bdebfb3e9590a407dd074e382e58552eb3bb805b [file] [log] [blame]
library;
import self as self;
import "dart:async" as asy;
import "dart:core" as core;
static method foo() asy::Future<core::int> async /* futureValueType= core::int */ {
final core::int c = 3;
return c;
}
static method main() void {
self::foo();
}