blob: 6361f89b4b5998556134d2f6835abf6d099903db [file] [log] [blame]
// 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"]);
}