blob: 77dad4812e90724a4eee63e0c54b921eaf61695b [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 promotable if all of the
/// conditions above are met. Test the case when there is a method with the same
/// name in the same library
/// @author sgrekhov22@gmail.com
void _x() {}
class A {
final int? _x = 42;
void testA() {
if (_x != null) {
_x.isOdd;
}
}
}
class C1 {
void _x() {}
}
class C2 {
static void _x() {}
}
main() {
A a = A();
if (a._x is int) {
a._x.isEven;
}
a.testA();
C1();
C2();
_x();
}