| Index: pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| diff --git a/pkg/analyzer/test/src/summary/resynthesize_test.dart b/pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| index c1f45674a7a8611af5eb9e351603bff66a970aea..72a8c98a9ed3c55be6dfa8c3b0d1ad636cc2d222 100644
|
| --- a/pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| +++ b/pkg/analyzer/test/src/summary/resynthesize_test.dart
|
| @@ -2495,6 +2495,16 @@ f() {}''');
|
| checkLibrary('f() {} g() {}');
|
| }
|
|
|
| + test_generic_gClass_gMethodStatic() {
|
| + resetWithOptions(new AnalysisOptionsImpl()..enableGenericMethods = true);
|
| + checkLibrary('''
|
| +class C<T, U> {
|
| + static void m<V, W>(V v, W w) {
|
| + }
|
| +}
|
| +''');
|
| + }
|
| +
|
| test_getElement_constructor_named() {
|
| ConstructorElement original = resolve2(addSource('class C { C.named(); }'))
|
| .getType('C')
|
|
|