blob: f6de717fb84e6069fa14fcfc54a7017e9279e123 [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>);
}