Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/openInSealed.fir.kt
T

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()
}
}
}