| // 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. | |
| // | |
| // Dart test program const map literals. | |
| class ListLiteral2NegativeTest<T> { | |
| test() { | |
| try { | |
| var m = const <T>[0, 1]; // Type parameter is not allowed with const. | |
| } on TypeError catch (error) {} | |
| } | |
| } | |
| main() { | |
| var t = new ListLiteral2NegativeTest<int>(); | |
| t.test(); | |
| } |