Index: tests/language_strong/callable_test.dart |
diff --git a/tests/language_strong/callable_test.dart b/tests/language_strong/callable_test.dart |
index 7865d2015e4d4fe4021b0b1aa67cdfdaccb8d5a9..b2707ba65c5b69689210aafaa7b37d7a6230817c 100644 |
--- a/tests/language_strong/callable_test.dart |
+++ b/tests/language_strong/callable_test.dart |
@@ -36,8 +36,8 @@ main() { |
Y y = new Y(); |
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 |
+ F f1 = x; // /// 00: dynamic type error, static type warning |
+ G g0 = y; // /// 01: dynamic type error, static type warning |
Expect.equals(f(), 42); |
Expect.equals(g(100), 187); |