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