8 lines
163 B
Kotlin
Vendored
8 lines
163 B
Kotlin
Vendored
sealed class My(open val x: Int?) {
|
|
init {
|
|
if (x != null) {
|
|
// Should be error: property is open
|
|
x.hashCode()
|
|
}
|
|
}
|
|
} |