| Index: tests/compiler/dart2js_extra/basic_class_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/basic_class_test.dart b/tests/compiler/dart2js_extra/basic_class_test.dart
|
| index 3ed652d10429c052cc33cc1c7491a294e4b83d3f..c694ab6757477c7887ec9fad6ff1115eb03abe7b 100644
|
| --- a/tests/compiler/dart2js_extra/basic_class_test.dart
|
| +++ b/tests/compiler/dart2js_extra/basic_class_test.dart
|
| @@ -17,11 +17,11 @@ void main() {
|
| B b;
|
| a = a;
|
| a = subA;
|
| - a = b; /// 01: static type warning
|
| + a = b; //# 01: static type warning
|
| subA = a;
|
| subA = subA;
|
| - subA = b; /// 02: static type warning
|
| - b = a; /// 03: static type warning
|
| - b = subA; /// 04: static type warning
|
| + subA = b; //# 02: static type warning
|
| + b = a; //# 03: static type warning
|
| + b = subA; //# 04: static type warning
|
| b = b;
|
| }
|
|
|