Chromium Code Reviews| Index: tests/compiler/dart2js_extra/int_index_test.dart |
| diff --git a/tests/compiler/dart2js_extra/int_index_test.dart b/tests/compiler/dart2js_extra/int_index_test.dart |
| index b41ae41a9689b5cf3bc57a867e8841d9fbfcad8a..6c899498498e1e751ee834134686c157f1f29d23 100644 |
| --- a/tests/compiler/dart2js_extra/int_index_test.dart |
| +++ b/tests/compiler/dart2js_extra/int_index_test.dart |
| @@ -4,7 +4,7 @@ |
| main() { |
| var a = [0, 1]; |
| - a[1.2]; /// 01: runtime error |
| + a[1.2]; // /// 01: runtime error |
| a[1.2] = 4; /// 02: runtime error |
|
sra1
2017/03/21 01:43:46
//
Jacob
2017/03/21 02:25:34
Done.
|
| checkIndex(a, 1.4); /// 03: runtime error |
| checkIndexedAssignment(a, 1.4); /// 04: runtime error |