| Index: tests/language_strong/named_parameters_type_test.dart
|
| diff --git a/tests/language_strong/named_parameters_type_test.dart b/tests/language_strong/named_parameters_type_test.dart
|
| index 5f8448954e6ea3531f172819584a982d621911bb..e8c4b57b98d43e923ed47220ee20979353686945 100644
|
| --- a/tests/language_strong/named_parameters_type_test.dart
|
| +++ b/tests/language_strong/named_parameters_type_test.dart
|
| @@ -17,7 +17,7 @@ main() {
|
| anyFunction = funNumOptBool;
|
| anyFunction = funNumOptBoolX;
|
| acceptFunNumOptBool(funNumOptBool);
|
| - acceptFunNumOptBool(funNum); /// 01: runtime error
|
| - acceptFunNumOptBool(funNumBool); /// 02: static type warning, runtime error
|
| - acceptFunNumOptBool(funNumOptBoolX); /// 03: static type warning, runtime error
|
| + acceptFunNumOptBool(funNum); // /// 01: runtime error
|
| + acceptFunNumOptBool(funNumBool); // /// 02: static type warning, runtime error
|
| + acceptFunNumOptBool(funNumOptBoolX); // /// 03: static type warning, runtime error
|
| }
|
|
|