Index: tests/language/callable_test.dart |
diff --git a/tests/language/callable_test.dart b/tests/language/callable_test.dart |
index ab4670884cabb4d32366f7fadee118e6d99d3d28..1dcb5e6d12f802e642e760d739365806bd1ed4b6 100644 |
--- a/tests/language/callable_test.dart |
+++ b/tests/language/callable_test.dart |
@@ -15,11 +15,10 @@ typedef G(String y); |
main() { |
X x = new X(); |
- Function f = x; // Should pass checked mode test |
+ Function f = x; // Should pass checked mode test |
Y y = new Y(); |
- Function g = y; // Should pass checked mode test |
- F f0 = y; // Should pass checked mode test |
+ Function g = y; // Should pass checked mode test |
+ F f0 = y; // Should pass checked mode test |
F f1 = x; // //# 00: dynamic type error, static type warning |
G g0 = y; // //# 01: dynamic type error, static type warning |
} |
- |