| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
| 7 class A { const A(); } |
| 8 class B extends A { const B(); } |
| 9 |
| 10 void test(List<B> list) { |
| 11 // Test that the list accepts a different type for indexOf. |
| 12 // List<B>.indexOf(A) |
| 13 Expect.equals(-1, list.indexOf(const A())); |
| 14 Expect.equals(-1, list.lastIndexOf(const A())); |
| 15 } |
| 16 |
| 17 main() { |
| 18 var list = new List<B>(1); |
| 19 list[0] = const B(); |
| 20 test(list); |
| 21 var list2 = new List<B>(); |
| 22 list2.add(const B()); |
| 23 test(list2); |
| 24 test(<B>[const B()]); |
| 25 test(const <B>[]); |
| 26 test(<B>[const B()].toList()); |
| 27 } |
| OLD | NEW |