blob: 3b34b30bc1e73c89fd2333f58224e7c7006d726d [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.
// Test that 'dynamic' can be used in const expressions and has the expected
// behavior.
import "package:expect/expect.dart";
const d = dynamic;
const i = int;
void main() {
Expect.isTrue(identical(d, dynamic)); //# 01: ok
// Duplicate key error.
Expect.equals(1, const { d: 1, d: 2 }.length); //# 02: compile-time error
Expect.equals(2, const { d: 1, i: 2 }.length); //# 03: ok
}