Index: tests/language/if_and_test.dart |
diff --git a/tests/language/if_and_test.dart b/tests/language/if_and_test.dart |
index 0b0cc84a8760394e334bd3b910efcbd0c4c3b72f..55c28da2d4ff1501f26f02e520a41a5df8abc282 100644 |
--- a/tests/language/if_and_test.dart |
+++ b/tests/language/if_and_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"; |
+ |
// The "if (negative) res2 |= 3" below can be emitted as negative && (res2 |= 3) |
// in JavaScript. Dart2js produced the wrong output. |