Index: tests/language/getter_no_setter_test.dart |
diff --git a/tests/language/getter_no_setter_test.dart b/tests/language/getter_no_setter_test.dart |
index eb8075a0eea97a6cedbc4af513a135a26348edd2..d48864fe4da55f41e08444b21b18a32226242043 100644 |
--- a/tests/language/getter_no_setter_test.dart |
+++ b/tests/language/getter_no_setter_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++; |