f2accb7b9e
#KT-16067 Fixed
5 lines
98 B
Kotlin
Vendored
5 lines
98 B
Kotlin
Vendored
class My(val x: Int)
|
|
|
|
fun foo(arg: Any?): My {
|
|
return if (<caret>arg !is My) My(42) else arg
|
|
} |