| Index: tests/language/implicit_this_test.dart
|
| ===================================================================
|
| --- tests/language/implicit_this_test.dart (revision 11549)
|
| +++ tests/language/implicit_this_test.dart (working copy)
|
| @@ -37,9 +37,9 @@
|
| }
|
|
|
| void main() {
|
| - var x = new Abstract(); /// 02: static type warning
|
| + var x = new Abstract(); /// 02: compile-time error
|
| var y = new SubAbstract1(); /// 01: continued
|
| - var z = new SubAbstract2(); /// 03: static type warning
|
| + var z = new SubAbstract2(); /// 03: compile-time error
|
| var a = new SubSubAbstract2(); /// 04: continued
|
| Expect.equals(x, x); /// 02: continued
|
| Expect.equals('7', new Concrete().toString());
|
|
|