| Index: pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| diff --git a/pkg/analyzer/test/generated/incremental_resolver_test.dart b/pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| index 45e77a1230777fd671433d1dee82d2d10f95f8f8..16ecdd9b27c5cd81f952e78f249ebbed68f07204 100644
|
| --- a/pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| @@ -2625,6 +2625,39 @@ bb() {}
|
| ''', expectedSuccess: false);
|
| }
|
|
|
| + void test_fieldClassField_propagatedType() {
|
| + _resolveUnit(r'''
|
| +class A {
|
| + static const A b = const B();
|
| + const A();
|
| +}
|
| +
|
| +class B extends A {
|
| + const B();
|
| +}
|
| +
|
| +main() {
|
| + print(12);
|
| + A.b;
|
| +}
|
| +''');
|
| + _updateAndValidate(r'''
|
| +class A {
|
| + static const A b = const B();
|
| + const A();
|
| +}
|
| +
|
| +class B extends A {
|
| + const B();
|
| +}
|
| +
|
| +main() {
|
| + print(123);
|
| + A.b;
|
| +}
|
| +''');
|
| + }
|
| +
|
| void test_inBody_expression() {
|
| _resolveUnit(r'''
|
| class A {
|
|
|