| Index: pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart.direct.expect
 | 
| diff --git a/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart.direct.expect b/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart.direct.expect
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..6462bb80a70a807232c775beb3711ba52ea0c153
 | 
| --- /dev/null
 | 
| +++ b/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart.direct.expect
 | 
| @@ -0,0 +1,21 @@
 | 
| +library test;
 | 
| +import self as self;
 | 
| +import "dart:core" as core;
 | 
| +
 | 
| +static method getListOfString() → core::List<core::String>
 | 
| +  return const <core::String>[];
 | 
| +static method foo() → void {
 | 
| +  core::List<dynamic> myList = self::getListOfString();
 | 
| +  myList.map((dynamic type) → dynamic => 42);
 | 
| +}
 | 
| +static method bar() → void {
 | 
| +  dynamic list;
 | 
| +  try {
 | 
| +    list = <core::String>[];
 | 
| +  }
 | 
| +  on dynamic catch(final dynamic _) {
 | 
| +    return;
 | 
| +  }
 | 
| +  list.map((dynamic value) → dynamic => "${value}");
 | 
| +}
 | 
| +static method main() → dynamic {}
 | 
| 
 |