| Index: tests/language/constructor_test.dart
|
| diff --git a/tests/language/constructor_test.dart b/tests/language/constructor_test.dart
|
| index 54923f0a42c79f5d205f00802a382d89641d1396..eb7239c50b4855e33eeaea321733d029db7d1af9 100644
|
| --- a/tests/language/constructor_test.dart
|
| +++ b/tests/language/constructor_test.dart
|
| @@ -23,11 +23,10 @@ class B {
|
|
|
| // Test the order of initialization: first the instance variable then
|
| // the super constructor.
|
| -abstract class Alpha {
|
| +class Alpha {
|
| Alpha(v) {
|
| this.foo(v);
|
| }
|
| - foo(v) => throw 'Alpha.foo should never be called.';
|
| }
|
|
|
| class Beta extends Alpha {
|
|
|