| Index: tests/language/final_variable_assignment_test.dart
|
| diff --git a/tests/language/final_variable_assignment_test.dart b/tests/language/final_variable_assignment_test.dart
|
| index f195c7566ad88dfc2ad8219917e213b1ea06db5d..edbee1eb2f98abdebc837f5824da6c8ac7d954f0 100644
|
| --- a/tests/language/final_variable_assignment_test.dart
|
| +++ b/tests/language/final_variable_assignment_test.dart
|
| @@ -6,8 +6,8 @@
|
|
|
| main() {
|
| final x = 30;
|
| - x = 0; /// 01: static type warning, runtime error
|
| + x = 0; // /// 01: static type warning, runtime error
|
| x += 1; /// 02: static type warning, runtime error
|
| - ++x; /// 03: static type warning, runtime error
|
| - x++; /// 04: static type warning, runtime error
|
| + ++x; // /// 03: static type warning, runtime error
|
| + x++; // /// 04: static type warning, runtime error
|
| }
|
|
|