| Index: tests/language/abstract_factory_constructor_test.dart
|
| diff --git a/tests/language/abstract_factory_constructor_test.dart b/tests/language/abstract_factory_constructor_test.dart
|
| index d2e3a6f00219e2106dbf4bee7b58f65644f95c8f..d20401ae8ac1bef847ad5d5bdc48a09bab41821c 100644
|
| --- a/tests/language/abstract_factory_constructor_test.dart
|
| +++ b/tests/language/abstract_factory_constructor_test.dart
|
| @@ -11,18 +11,19 @@ class B extends A1 {
|
| method() {}
|
| }
|
|
|
| -class A1 {
|
| +abstract class A1 {
|
| A1() {}
|
| method(); // Abstract.
|
| factory A1.make() { return new B(); }
|
| }
|
|
|
| class A2 {
|
| - method(); // Abstract.
|
| + // Intentionally abstract method.
|
| + method(); /// 00: static type warning
|
| A2.make() {}
|
| }
|
|
|
| main() {
|
| new A1.make();
|
| - new A2.make(); /// 00: static type warning
|
| + new A2.make(); /// 00: continued
|
| }
|
|
|