| Index: pkg/analyzer/test/src/task/dart_test.dart
|
| diff --git a/pkg/analyzer/test/src/task/dart_test.dart b/pkg/analyzer/test/src/task/dart_test.dart
|
| index e351c39f68421478b60cbed0bc30936a683307f8..519b2f2578027508dffd6cb9b182bedc9c1b7b56 100644
|
| --- a/pkg/analyzer/test/src/task/dart_test.dart
|
| +++ b/pkg/analyzer/test/src/task/dart_test.dart
|
| @@ -1146,7 +1146,7 @@ const y = 1;
|
| CompilationUnit unit = outputs[RESOLVED_UNIT1];
|
| // Find the elements for the constants x and y.
|
| List<PropertyAccessorElement> accessors = unit.element.accessors;
|
| - Element x = accessors
|
| + PropertyInducingElement x = accessors
|
| .firstWhere((PropertyAccessorElement accessor) =>
|
| accessor.isGetter && accessor.name == 'x')
|
| .variable;
|
|
|