| Index: pkg/analyzer/test/src/task/strong/inferred_type_test.dart
|
| diff --git a/pkg/analyzer/test/src/task/strong/inferred_type_test.dart b/pkg/analyzer/test/src/task/strong/inferred_type_test.dart
|
| index 84052c4646bac1e3328fcd3531569128848e6b6f..8114c01e0c360aecf596c1b2884a17d4294499f7 100644
|
| --- a/pkg/analyzer/test/src/task/strong/inferred_type_test.dart
|
| +++ b/pkg/analyzer/test/src/task/strong/inferred_type_test.dart
|
| @@ -1185,9 +1185,11 @@ void functionExpressionInvocation() {
|
| checkFile('''
|
| class C {
|
| m(x) => x;
|
| + dynamic g(int x) => x;
|
| }
|
| class D extends C {
|
| /*=T*/ m/*<T>*/(/*=T*/ x) => x;
|
| + /*=T*/ g/*<T>*/(/*=T*/ x) => x;
|
| }
|
| main() {
|
| int y = /*info:DYNAMIC_CAST*/(new D() as C).m(42);
|
|
|