blob: 607724f12af6e672fe7108e2e19cb655ea9ec655 [file] [log] [blame]
// Copyright (c) 2012, 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.
// A regression test for a dart2js crash.
void main() {
// This constructor call causes a crash in dart2js.
var o = new LinkedHashMap<int, int>();
// Comment out this line, the compiler doesn't crash.
Expect.isFalse(o is List<int>);
// Enable these two lines, the compiler doesn't crash.
Expect.isTrue(o.keys is List<int>);
Expect.isFalse(o.keys is List<String>);
}