blob: 710fc53a35a562270aecb3dcd28fb6844d755862 [file]
// Copyright (c) 2020, 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 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(EqualKeysInMapTest);
});
}
@reflectiveTest
class EqualKeysInMapTest extends PubPackageResolutionTest {
test_constant_constant() async {
await resolveTestCodeWithDiagnostics(r'''
const a = 1;
const b = 1;
var s = {a: 2, b: 3};
// ^
// [diag.equalKeysInMap] Two keys in a map literal shouldn't be equal.
''');
}
test_literal_constant() async {
await resolveTestCodeWithDiagnostics(r'''
const one = 1;
var s = {1: 2, one: 3};
// ^^^
// [diag.equalKeysInMap] Two keys in a map literal shouldn't be equal.
''');
}
test_literal_literal() async {
await resolveTestCodeWithDiagnostics(r'''
var s = {1: 2, 1: 3};
// ^
// [diag.equalKeysInMap] Two keys in a map literal shouldn't be equal.
''');
}
}