blob: 66b1070f4814b44952e2a4d3271dd5aaa9922a06 [file] [log] [blame]
/*
* Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion It is not a compile time error to write to a final variable if
* that variable is declared late and does not have an initializer.
*
* @description Check that it is not a compile time error to write to a final
* variable if that variable is declared late and does not have an initializer.
* @author sgrekhov@unipro.ru
* @issue 39684
*/
// Requirements=nnbd-strong
import "../../Utils/expect.dart";
late final g;
class C {
static late final s;
late final v;
}
main() {
late final l;
g = "Lily";
C.s = "was";
C c = new C();
c.v = "here";
l = "Run, Forrest, run";
Expect.equals("Lily", g);
Expect.equals("was", C.s);
Expect.equals("here", c.v);
Expect.equals("Run, Forrest, run", l);
}