Index: tests/language/type_vm_test.dart |
=================================================================== |
--- tests/language/type_vm_test.dart (revision 12003) |
+++ tests/language/type_vm_test.dart (working copy) |
@@ -172,9 +172,9 @@ |
static testFunctionNum() { |
int result = 0; |
Function anyFunction; |
- void acceptFunNum(void funNum(num num)) { }; |
+ void acceptFunNum(void funNum(num n)) { }; |
void funObj(Object obj) { }; |
- void funNum(num num) { }; |
+ void funNum(num n) { }; |
void funInt(int i) { }; |
void funString(String s) { }; |
anyFunction = funObj; // No error. |