| Index: tests/lib/mirrors/declarations_model_easier.dart
|
| diff --git a/tests/lib/mirrors/declarations_model_easier.dart b/tests/lib/mirrors/declarations_model_easier.dart
|
| index a14ef893ed4d62100309df11838805c35b318209..665b691ec334fbc9d5797a8418f6c1fbfc46d05a 100644
|
| --- a/tests/lib/mirrors/declarations_model_easier.dart
|
| +++ b/tests/lib/mirrors/declarations_model_easier.dart
|
| @@ -44,7 +44,7 @@ class Superclass<S> {
|
| factory Superclass.inheritedNormalFactory(y) =>
|
| new Superclass.inheritedRedirectingConstructor(y * 3);
|
| factory Superclass.inheritedRedirectingFactory(z) =
|
| - Superclass.inheritedNormalFactory;
|
| + Superclass<S>.inheritedNormalFactory;
|
| }
|
|
|
| abstract class Class<C> extends Superclass<C> implements Interface<C> {
|
| @@ -66,7 +66,7 @@ abstract class Class<C> extends Superclass<C> implements Interface<C> {
|
| : super.inheritedGenerativeConstructor(0);
|
| Class.redirectingConstructor(x) : this.generativeConstructor(x * 2);
|
| factory Class.normalFactory(y) => new ConcreteClass(y * 3);
|
| - factory Class.redirectingFactory(z) = Class.normalFactory;
|
| + factory Class.redirectingFactory(z) = Class<C>.normalFactory;
|
| }
|
|
|
| // This is just here as a target of Class's factories to appease the analyzer.
|
|
|