blob: 8b497f0f461ad175859a5a3fbe4a6f59c2ba347b [file] [log] [blame]
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:async' as _async; //OK
import 'dart:collection' as $collection; //OK
import 'dart:convert' as _1; //LINT
import 'dart:core' as _i1; //OK
import 'dart:math' as dartMath; //LINT [23:8]
main() {
_i1.print(dartMath.pi);
_i1.print(_async.Timer);
_i1.print(new $collection.LinkedHashSet<_i1.String>());
_i1.print(_1.json);
}