blob: 9b4e36931512dc3ed376566cee4f57d98a078006 [file] [log] [blame]
library test;
import self as self;
import "dart:async" as asy;
import "dart:core" as core;
static method main() asy::Future<dynamic> async {
dynamic d;
core::List<core::int> l0 = await<core::int>[d];
core::List<core::int> l1 = await asy::Future::value<core::List<core::int>>(<core::int>[d]);
}