blob: bf9b2b5461788d224ce75a154999ddf3d2f487ea [file] [log] [blame]
// Copyright (c) 2021, 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 Local variables with explicitly written types are given the
/// declared types as written. The declared type of the variable is considered a
/// "type of interest" in the sense defined in the flow analysis specification.
/// If the variable has an initializer (explicit or implicit) and is not final,
/// then the declaration is treated as an assignment for the purposes of
/// promotion.
///
/// @description Checks that if the local variable has an initializer (explicit
/// or implicit) and is final, then the declaration is not treated as an
/// assignment for the purposes of promotion.
///
/// @author sgrekhov@unipro.ru
main() {
final int? x = 42;
x.isEven;
//^
// [analyzer] unspecified
// [cfe] unspecified
}