Index: tests/lib/mirrors/fake_function_without_call_test.dart |
diff --git a/tests/lib/mirrors/fake_function_without_call_test.dart b/tests/lib/mirrors/fake_function_without_call_test.dart |
index da6bd59544ea12c0b4472d29b22bd073374886ed..ff202fdbfaf70f15599ba04aac65d4ee4c21f9c8 100644 |
--- a/tests/lib/mirrors/fake_function_without_call_test.dart |
+++ b/tests/lib/mirrors/fake_function_without_call_test.dart |
@@ -6,7 +6,9 @@ import "dart:mirrors"; |
import "package:expect/expect.dart"; |
-class MultiArityFunction implements Function { |
+class MultiArityFunction |
+ implements Function /// static type warning |
+{ |
noSuchMethod(Invocation msg) { |
if (msg.memberName != #call) return super.noSuchMethod(msg); |
return msg.positionalArguments.join(","); |