Index: tests/language/const_counter_negative_test.dart |
diff --git a/tests/language/const_counter_negative_test.dart b/tests/language/const_counter_negative_test.dart |
index 38ba11e0a35e41cf59702ebf2ee3ac1a989b5ced..ad4d8359f0e5569e3fd35745a39767711610ea5c 100644 |
--- a/tests/language/const_counter_negative_test.dart |
+++ b/tests/language/const_counter_negative_test.dart |
@@ -3,6 +3,8 @@ |
// BSD-style license that can be found in the LICENSE file. |
// Bug: 4254106 Constant constructors must have (implicit) const parameters. |
+import "package:expect/expect.dart"; |
+ |
class ConstCounter { |
// Incorrect assignment of a non const function to a final field. |
const ConstCounter(int i) : nextValue_ = (() => i++); |