blob: e0d92ec6055c3918770fcd9d9a8b31315c5561f1 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method strings() core::List<core::String*>* {
core::Iterable<core::String*>* stuff = core::_GrowableList::•<dynamic>(0).{core::Iterable::expand}<core::String*>((dynamic i) core::List<core::String*>* {
return core::_GrowableList::•<core::String*>(0);
});
return stuff.{core::Iterable::toList}();
}
static method main() dynamic {
self::strings();
}