Index: tests/language/function_type_alias2_test.dart |
diff --git a/tests/language/function_type_alias2_test.dart b/tests/language/function_type_alias2_test.dart |
index f2c03c512ef949fd90a940a8669fecb4deb168cd..bce01b01102e27b4ed854bb5aa33eea75f982cf4 100644 |
--- a/tests/language/function_type_alias2_test.dart |
+++ b/tests/language/function_type_alias2_test.dart |
@@ -5,6 +5,8 @@ |
// |
// Dart test for function type alias with optional parameters. |
+import "package:expect/expect.dart"; |
+ |
typedef int f1<T>([int a, int b, T c]); |
typedef int f2<T>([int a, int b, T d]); |
typedef int f3<T>({int a, int b, T c}); |