If expression to elvis now handles call chains #KT-14084 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
1cfb8f2aef
commit
2117b30b76
@@ -0,0 +1,5 @@
|
||||
class My(val x: Int)
|
||||
|
||||
fun foo(arg: Any?): Int {
|
||||
return if (<caret>arg is My) arg.x else 42
|
||||
}
|
||||
Reference in New Issue
Block a user