mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
13 lines
271 B
Kotlin
Vendored
13 lines
271 B
Kotlin
Vendored
// "Make 'MyClass' open" "false"
|
|
// ACTION: Make 'y' not open
|
|
// ACTION: Add 'const' modifier
|
|
// ACTION: Make internal
|
|
// ACTION: Make private
|
|
// ACTION: Specify type explicitly
|
|
|
|
// See KT-11003
|
|
class MyClass {
|
|
companion object {
|
|
<caret>open val y = 4
|
|
}
|
|
} |