Index: corelib/src/list.dart |
diff --git a/corelib/src/list.dart b/corelib/src/list.dart |
index 67de79615ee44f3f3d447fd8c29026434a76bcf9..62da434dc9f7a1d5f633d052f231e4d4fcc35c4a 100644 |
--- a/corelib/src/list.dart |
+++ b/corelib/src/list.dart |
@@ -6,7 +6,7 @@ |
* A [List] is an indexable collection with a length. It can be of |
* fixed size or extendable. |
*/ |
-interface List<E> extends Collection<E> factory ListFactory { |
+interface List<E> extends Collection<E> default ListFactory<E> { |
/** |
* Creates a list of the given [length]. |