blob: 4a6a0c263ecdc27bbe3a2617bf7c6c513daf8a4e [file] [log] [blame]
// Copyright (c) 2018, 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.
// @dart = 2.9
/// @assertion The mixin word is a built-in identifier to avoid parsing
/// ambiguities. It does not need to be a reserved word. The identifier mixin was
/// made a built-in identifier in Dart 2.0
///
/// @description Checks that the mixin word cannot be used as an import prefix
/// @author sgrekhov@unipro.ru
import "dart:collection" as mixin;
// ^
// [analyzer] unspecified
// [cfe] unspecified
main() {
mixin.HashMap map = new mixin.HashMap();
}