Index: tests/compiler/dart2js_extra/bailout_test.dart |
diff --git a/tests/compiler/dart2js_extra/bailout_test.dart b/tests/compiler/dart2js_extra/bailout_test.dart |
index d97e75cd6e091ae5b55fe82fe33518db74ecb7fe..2b423991d35f713566d765acdeeaeae32a87d11d 100644 |
--- a/tests/compiler/dart2js_extra/bailout_test.dart |
+++ b/tests/compiler/dart2js_extra/bailout_test.dart |
@@ -45,7 +45,7 @@ void forBailout() { |
void forInBailout() { |
var n = myString.length; |
var res = ''; |
- for (int i in myString.charCodes()) { |
+ for (int i in myString.charCodes) { |
var o = myString; |
if (false) o[1] = 2; |
res = res.concat(new String.fromCharCodes([i])); |