Index: tests/language/named_parameters_type_test.dart |
diff --git a/tests/language/named_parameters_type_test.dart b/tests/language/named_parameters_type_test.dart |
index 21c7e2a5e7db68b691eb96772f15f155568b69f1..2d62e8c2dfb055be4f16cb08b5e9143ee1f80422 100644 |
--- a/tests/language/named_parameters_type_test.dart |
+++ b/tests/language/named_parameters_type_test.dart |
@@ -7,11 +7,16 @@ |
main() { |
Function anyFunction; |
- void acceptFunNumOptBool(void funNumOptBool(num n, {bool b})) { }; |
- void funNum(num n) { }; |
- void funNumBool(num n, bool b) { }; |
- void funNumOptBool(num n, {bool b: true}) { }; |
- void funNumOptBoolX(num n, {bool x: true}) { }; |
+ void acceptFunNumOptBool(void funNumOptBool(num n, {bool b})) {} |
+ ; |
+ void funNum(num n) {} |
+ ; |
+ void funNumBool(num n, bool b) {} |
+ ; |
+ void funNumOptBool(num n, {bool b: true}) {} |
+ ; |
+ void funNumOptBoolX(num n, {bool x: true}) {} |
+ ; |
anyFunction = funNum; |
anyFunction = funNumBool; |
anyFunction = funNumOptBool; |