| Index: pkg/analyzer/test/src/task/strong/checker_test.dart
|
| diff --git a/pkg/analyzer/test/src/task/strong/checker_test.dart b/pkg/analyzer/test/src/task/strong/checker_test.dart
|
| index aa51b50a97a96e36d128714316ba4606e63ea02b..b11e7926d6e15e1bf6777a36e8f932b08b6b6328 100644
|
| --- a/pkg/analyzer/test/src/task/strong/checker_test.dart
|
| +++ b/pkg/analyzer/test/src/task/strong/checker_test.dart
|
| @@ -125,6 +125,18 @@ void main() {
|
| y = /*info:DynamicCast, info:DynamicInvoke*/f(3);
|
| (/*info:DynamicInvoke*/f(3.0));
|
| }
|
| + {
|
| + dynamic g = new B();
|
| + (/*info:DynamicInvoke*/g.call(32.0));
|
| + (/*info:DynamicInvoke*/g.col(42.0));
|
| + (/*info:DynamicInvoke*/g.foo(42.0));
|
| + (/*info:DynamicInvoke*/g.x);
|
| + A f = new B();
|
| + f.call(32.0);
|
| + (/*info:DynamicInvoke*/f.col(42.0));
|
| + (/*info:DynamicInvoke*/f.foo(42.0));
|
| + (/*info:DynamicInvoke*/f.x);
|
| + }
|
| }
|
| '''
|
| });
|
|
|