Skip to content

Commit

Permalink
#2149. [co19_2] Fix new errors due to changes with the constant evalu…
Browse files Browse the repository at this point in the history
…ator (#2151)
  • Loading branch information
sgrekhov authored Jul 26, 2023
1 parent 11de275 commit db81808
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,14 @@
/// parameters of the immediately enclosing class bound to a set of actual type
/// arguments V1, ... , Vm and the formal parameter bindings determined by the
/// argument list of the superinitializer of k.
///
/// @description Checks that 'this' is not accessible in the right-hand side of
/// an initialized instance variable declaration (e.g. a variable can't be
/// initialized using another variable).
/// @author msyabro

class C {
const C();
//^
// [analyzer] unspecified

final x = 1;
final y = x;
Expand Down

0 comments on commit db81808

Please sign in to comment.