library; import self as self; import "dart:core" as core; static method test() → void { core::List* l = [1, "hello"]; core::List* l2 = l.{core::Iterable::map}((dynamic element) → core::String* => element.{core::Object::toString}()).{core::Iterable::toList}(); } static method main() → void {}