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