Index: pkg/analyzer/test/src/task/strong/non_null_checker_test.dart |
diff --git a/pkg/analyzer/test/src/task/strong/non_null_checker_test.dart b/pkg/analyzer/test/src/task/strong/non_null_checker_test.dart |
index 8db9b2442fe6f27dbfb12fcff206389d62865cd3..d130a54e6b4db5ceccff46480bf16c96f7b50633 100644 |
--- a/pkg/analyzer/test/src/task/strong/non_null_checker_test.dart |
+++ b/pkg/analyzer/test/src/task/strong/non_null_checker_test.dart |
@@ -111,7 +111,7 @@ main() { |
void main() { |
int i = 1; |
i += 2; |
- /*error:STATIC_TYPE_ERROR*/i += null; |
+ /*error:INVALID_ASSIGNMENT*/i += null; |
print(i); |
} |
'''); |