Chromium Code Reviews| Index: tests/language/infinity_test.dart |
| diff --git a/tests/language/infinity_test.dart b/tests/language/infinity_test.dart |
| index 7ac9f31ad0b9bf555adadd61800eb8b8f93df683..c7b02726fe3193a1591794672faa50d9a6019177 100644 |
| --- a/tests/language/infinity_test.dart |
| +++ b/tests/language/infinity_test.dart |
| @@ -2,6 +2,8 @@ |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| +import "package:expect/expect.dart"; |
| + |
| int inscrutable(int x) => x == 0 ? 0 : x | inscrutable(x & (x - 1)); |
| main() { |