import 'dart:core' as core; import 'dart:collection'; class Map { new() => null; ping() => core.print('map'); } main() { new Map().ping(); }