| Index: pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| diff --git a/pkg/analyzer/test/src/summary/resynthesize_common.dart b/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| index 48293c1cceee3f49ee532298f2e75dcd6e2dcdd6..3e03093298b2b72964578633ee9f652898439942 100644
|
| --- a/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| +++ b/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| @@ -3625,6 +3625,24 @@ var v = [f, g];
|
| ''');
|
| }
|
|
|
| + test_inheritance_errors() {
|
| + checkLibrary('''
|
| +abstract class A {
|
| + int m();
|
| +}
|
| +
|
| +abstract class B {
|
| + String m();
|
| +}
|
| +
|
| +abstract class C implements A, B {}
|
| +
|
| +abstract class D extends C {
|
| + var f;
|
| +}
|
| +''');
|
| + }
|
| +
|
| test_initializer_executable_with_return_type_from_closure() {
|
| checkLibrary('var v = () => 0;');
|
| }
|
|
|