| Index: tests/standalone/array_bounds_check_generalization_test.dart
|
| diff --git a/tests/standalone/array_bounds_check_generalization_test.dart b/tests/standalone/array_bounds_check_generalization_test.dart
|
| index f102e8f785fc8efe5e48db73061702e1734b2e9e..bfd0cceb070b2bc2e70700c9640b0fdc488821e7 100644
|
| --- a/tests/standalone/array_bounds_check_generalization_test.dart
|
| +++ b/tests/standalone/array_bounds_check_generalization_test.dart
|
| @@ -33,7 +33,7 @@ test3(a, b) {
|
| test4(a, b) {
|
| var e;
|
| if (a.length < 2) {
|
| - return;
|
| + return null;
|
| }
|
|
|
| for (var i = 0, j = 1, k = 0; i < a.length - 1; i++, j++, k++) {
|
| @@ -45,11 +45,11 @@ test4(a, b) {
|
| test5(a, b, k0) {
|
| var e;
|
| if (a.length < 2) {
|
| - return;
|
| + return null;
|
| }
|
|
|
| if (k0 > 1) {
|
| - return;
|
| + return null;
|
| }
|
|
|
| for (var i = 0, j = 1, k = 0; i < a.length - 1; i++, j++, k++) {
|
|
|