Index: tests/language/getter_no_setter2_test.dart |
diff --git a/tests/language/getter_no_setter2_test.dart b/tests/language/getter_no_setter2_test.dart |
index c7b88593bcbcab69c8b52d9715f824c579ddbc86..62444b734b491756f9039508a28dc600f2eb5643 100644 |
--- a/tests/language/getter_no_setter2_test.dart |
+++ b/tests/language/getter_no_setter2_test.dart |
@@ -3,6 +3,8 @@ |
// BSD-style license that can be found in the LICENSE file. |
// Verifies behavior with a static getter, but no field and no setter. |
+import "package:expect/expect.dart"; |
+ |
class Example { |
static int _var = 1; |
static int get nextVar => _var++; |