| Index: pkg/analyzer/test/src/summary/summary_common.dart
|
| diff --git a/pkg/analyzer/test/src/summary/summary_common.dart b/pkg/analyzer/test/src/summary/summary_common.dart
|
| index 267683bbd367f7cd71b38a1c192a7c525a821488..9bf7db2ed52589142fca353b501e25633f7cc835 100644
|
| --- a/pkg/analyzer/test/src/summary/summary_common.dart
|
| +++ b/pkg/analyzer/test/src/summary/summary_common.dart
|
| @@ -4818,6 +4818,18 @@ f() {}''';
|
| expect(f.inferredReturnTypeSlot, 0);
|
| }
|
|
|
| + test_generic_gClass_gMethodStatic() {
|
| + UnlinkedClass cls = serializeClassText('''
|
| +class C<T, U> {
|
| + static void m<V, W>(V v, W w) {
|
| + }
|
| +}
|
| +''');
|
| + List<UnlinkedParam> params = cls.executables[0].parameters;
|
| + checkParamTypeRef(params[0].type, 2);
|
| + checkParamTypeRef(params[1].type, 1);
|
| + }
|
| +
|
| test_generic_method_in_generic_class() {
|
| UnlinkedClass cls = serializeClassText(
|
| 'class C<T, U> { void m<V, W>(T t, U u, V v, W w) {} }');
|
|
|