| 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 { | |
| 8 const A(); | |
| 9 } | |
| 10 | |
| 11 class B extends A { | |
| 12 const B(); | |
| 13 } | |
| 14 | |
| 15 void test(List<B> list) { | |
| 16 // Test that the list accepts a different type for indexOf. | |
| 17 // List<B>.indexOf(A) | |
| 18 Expect.equals(-1, list.indexOf(const A())); | |
| 19 Expect.equals(-1, list.lastIndexOf(const A())); | |
| 20 } | |
| 21 | |
| 22 main() { | |
| 23 var list = new List<B>(1); | |
| 24 list[0] = const B(); | |
| 25 test(list); | |
| 26 var list2 = new List<B>(); | |
| 27 list2.add(const B()); | |
| 28 test(list2); | |
| 29 test(<B>[const B()]); | |
| 30 test(const <B>[]); | |
| 31 test(<B>[const B()].toList()); | |
| 32 } | |
| OLD | NEW |