Index: tests/language/src/MapLiteral2Test.dart |
diff --git a/tests/language/src/MapLiteral2Test.dart b/tests/language/src/MapLiteral2Test.dart |
deleted file mode 100644 |
index 0f7705228a75141106ca53cbead454398500b147..0000000000000000000000000000000000000000 |
--- a/tests/language/src/MapLiteral2Test.dart |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-// Copyright (c) 2011, 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. |
-// Test program for map literals. |
- |
-int nextValCtr; |
- |
-get nextVal() { |
- return nextValCtr++; |
-} |
- |
-main() { |
- // Map literals with string interpolation in keys. |
- nextValCtr = 0; |
- var map = {"a$nextVal": "Grey", "a$nextVal": "Poupon" }; |
- Expect.equals(true, map.containsKey("a0")); |
- Expect.equals(true, map.containsKey("a1")); |
- Expect.equals("Grey", map["a0"]); |
- Expect.equals("Poupon", map["a1"]); |
-} |