| Index: tests/language/positional_parameters_type_test.dart
|
| diff --git a/tests/language/positional_parameters_type_test.dart b/tests/language/positional_parameters_type_test.dart
|
| index caa69cf66a42c8676efaa8f7b68705f8f4035da2..e80996fa0d30a462d7905f8684ad4514f477754e 100644
|
| --- a/tests/language/positional_parameters_type_test.dart
|
| +++ b/tests/language/positional_parameters_type_test.dart
|
| @@ -7,16 +7,11 @@
|
|
|
| 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;
|
|
|