10 lines
108 B
Kotlin
Vendored
10 lines
108 B
Kotlin
Vendored
// See KT-10061
|
|
|
|
class My {
|
|
val x: Int? get() = 42
|
|
}
|
|
|
|
fun foo(my: My) {
|
|
my.x!!
|
|
when (my.x) { }
|
|
} |