blob: 365c32bfb1d4b902134e27bca134564a37ff6161 [file] [log] [blame]
// Copyright (c) 2023, 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 An instance field is promotable if all the following conditions
/// hold:
/// - It refers to a field (not a getter)
/// - The field is private
/// - The field is final
/// - There is no getter with the same name elsewhere in the library
/// - There is no non-final field with the same name elsewhere in the library
/// - There is no implicit noSuchMethod forwarder with the same name elsewhere
/// in the library.
///
/// @description Checks that an instance field is not promotable if it is an
/// external field (which actually is a getter)
/// @author sgrekhov22@gmail.com
/// @issue 53426
class C {
external final int? _x;
void test() {
if (_x is int) {
_x.isOdd;
// ^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
}
}
main() {
C c = C();
if (c._x != null) {
c._x.isEven;
// ^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
c.test();
}