blob: 1a8ece72cdec9d290b21ecf55fdf301a218a3c31 [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.map((dynamic element) dynamic => element.toString()).toList();
}
static method main() void {}