[cfe] Update test expectations

Change-Id: I976edefe060af2e5d8a293ca2f4b2f8e554334b1
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/165600
Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
Commit-Queue: Johnni Winther <johnniwinther@google.com>
This commit is contained in:
Johnni Winther 2020-10-01 11:27:12 +00:00 committed by commit-bot@chromium.org
parent e34f6e4405
commit 428c27aee7

View file

@ -12,7 +12,7 @@ abstract class A {
final dynamic n;
// ^
// [analyzer] COMPILE_TIME_ERROR.FINAL_NOT_INITIALIZED
// [cfe] unspecified
// [cfe] Final field 'n' is not initialized.
// Uninitialized, but no errors.
abstract final int x1;
@ -34,6 +34,7 @@ class B implements A {
class C = Object with A;
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_ABSTRACT_CLASS_INHERITS_ABSTRACT_MEMBER
// [cfe] The non-abstract class 'C' is missing implementations for these members:
// Has a generative constructor: default.
abstract class D {