blob: e547269958fc4d85c1c1033665628573418b3dc4 [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 = <dynamic>[].{core::Iterable::expand}<core::String*>((dynamic i) core::List<core::String*>* {
return <core::String*>[];
});
return stuff.{core::Iterable::toList}();
}
static method main() dynamic {
self::strings();
}