| Index: tests/compiler/dart2js/inference/data/super_set.dart
|
| diff --git a/tests/compiler/dart2js/inference/data/super_set.dart b/tests/compiler/dart2js/inference/data/super_set.dart
|
| index 937a147bbc926f9e18105e133c7ab898e8214300..eb77cbc2e3807ed719a67f1998b10a9baa4024b8 100644
|
| --- a/tests/compiler/dart2js/inference/data/super_set.dart
|
| +++ b/tests/compiler/dart2js/inference/data/super_set.dart
|
| @@ -10,12 +10,13 @@ class Super {
|
| class Sub extends Super {
|
| /*Sub.method:[subclass=Closure]*/
|
| method() {
|
| + // ignore: INVALID_ASSIGNMENT
|
| var a = super.field = new Sub();
|
| - return a./*[exact=Sub]*/method;
|
| + return a. /*[exact=Sub]*/ method;
|
| }
|
| }
|
|
|
| /*main:[null]*/
|
| main() {
|
| - new Sub()./*[exact=Sub]*/method();
|
| + new Sub(). /*[exact=Sub]*/ method();
|
| }
|
|
|