Files
kotlin-fork/plugins/allopen/testData/diagnostics/kt54260.kt
T
Brian Norman 70662007a5 [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
2023-07-17 11:49:24 +00:00

10 lines
137 B
Kotlin
Vendored

// WITH_STDLIB
annotation class AllOpen
@AllOpen
annotation class ConsoleCommands(
val value: String = "",
val scope: String
)