[AllOpen] Private properties can be considered stable even when open

The AllOpen plugin can make private members open. But for private
properties, they can be considered stable for smart-casting if they do
not have a custom getter.

#KT-58049 Fixed
This commit is contained in:
Brian Norman
2023-07-12 08:50:44 -05:00
committed by Space Team
parent feed740415
commit 70662007a5
10 changed files with 134 additions and 3 deletions
+2 -3
View File
@@ -1,10 +1,9 @@
// FIR_IDENTICAL
// WITH_STDLIB
annotation class AllOpen
@AllOpen
annotation class ConsoleCommands(
val <!NON_FINAL_MEMBER_IN_FINAL_CLASS!>value<!>: String = "",
val <!NON_FINAL_MEMBER_IN_FINAL_CLASS!>scope<!>: String
val value: String = "",
val scope: String
)