Index: tests/language/mixin_this_use_test.dart |
diff --git a/tests/language/mixin_this_use_test.dart b/tests/language/mixin_this_use_test.dart |
index 1619a76e13fba70dd261821cf26164c0fd5ed7f2..7398391e2731c126b88d03532180c2e47fa525a4 100644 |
--- a/tests/language/mixin_this_use_test.dart |
+++ b/tests/language/mixin_this_use_test.dart |
@@ -5,6 +5,8 @@ |
// Test that [:this:] in a class A used as a mixin in class D knows it can be an |
// instance of D. |
+import "package:expect/expect.dart"; |
+ |
class A { |
foo() => bar(); // Implicit use of [:this:] |
bar() => 42; |