| Index: frog/tests/leg/src/BuiltinInterceptorTest.dart
|
| diff --git a/frog/tests/leg/src/BuiltinInterceptorTest.dart b/frog/tests/leg/src/BuiltinInterceptorTest.dart
|
| index df8a3745be31ae7bd716eb9b82f1ebe3e0c8d7d0..02fa66857a09bfb46f7093229d4cef7e208537ca 100644
|
| --- a/frog/tests/leg/src/BuiltinInterceptorTest.dart
|
| +++ b/frog/tests/leg/src/BuiltinInterceptorTest.dart
|
| @@ -6,8 +6,11 @@
|
|
|
| final String TEST_ONE = @"""
|
| foo(String a) {
|
| - // index into the parameter to make sure we'll get a type guard.
|
| - print(a[0]);
|
| + // index into the parameter and move into a loop to make sure we'll get a
|
| + // type guard.
|
| + for (int i = 0; i < 1; i++) {
|
| + print(a[0]);
|
| + }
|
| return a.length;
|
| }
|
| """;
|
|
|