Index: sdk/lib/core/list.dart |
diff --git a/sdk/lib/core/list.dart b/sdk/lib/core/list.dart |
index 9d9a0933207b184c79efbc72b8b491d183ad87f7..0d10e85b50450b84a969f8592a82fe96dacb67cf 100644 |
--- a/sdk/lib/core/list.dart |
+++ b/sdk/lib/core/list.dart |
@@ -51,7 +51,7 @@ part of dart.core; |
* directly or through iterating an [Iterable] that is backed by the list, will |
* break the iteration. |
*/ |
-abstract class List<E> implements Iterable<E>, EfficientLength { |
+abstract class List<E> implements EfficientLengthIterable<E> { |
/** |
* Creates a list of the given length. |
* |