Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(606)

Side by Side Diff: tests/corelib/list_index_of2_test.dart

Issue 14246008: Allow Object when doing lookups. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Forgot to upload before committing Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/corelib/iterable_contains2_test.dart ('k') | tests/corelib/list_index_of_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « tests/corelib/iterable_contains2_test.dart ('k') | tests/corelib/list_index_of_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698