| library; |
| // |
| // Problems in library: |
| // |
| // pkg/front_end/testcases/wildcard_variables/local_function_declaration.dart:7:11: Error: Undefined name '_'. |
| // print(_); |
| // ^ |
| // |
| // pkg/front_end/testcases/wildcard_variables/local_function_declaration.dart:15:11: Error: Undefined name '_'. |
| // print(_); |
| // ^ |
| // |
| // pkg/front_end/testcases/wildcard_variables/local_function_declaration.dart:17:11: Error: Undefined name '_'. |
| // print(_); |
| // ^ |
| // |
| import self as self; |
| import "dart:core" as core; |
| |
| static method test() → dynamic { |
| function fn(dynamic _#wc0#formal, dynamic _#wc1#formal) → void { |
| core::print(invalid-expression "pkg/front_end/testcases/wildcard_variables/local_function_declaration.dart:7:11: Error: Undefined name '_'. |
| print(_); |
| ^"); |
| } |
| fn(1, 2){(dynamic, dynamic) → void}; |
| try { |
| throw "!"; |
| } |
| on core::Exception catch(final core::Exception _#wc2#formal, final core::StackTrace _#wc3#formal) { |
| core::print(invalid-expression "pkg/front_end/testcases/wildcard_variables/local_function_declaration.dart:15:11: Error: Undefined name '_'. |
| print(_); |
| ^"); |
| } |
| on core::Object catch(final core::Object _#wc4#formal, final core::StackTrace _#wc5#formal) { |
| core::print(invalid-expression "pkg/front_end/testcases/wildcard_variables/local_function_declaration.dart:17:11: Error: Undefined name '_'. |
| print(_); |
| ^"); |
| } |
| } |