f2accb7b9e
#KT-16067 Fixed
5 lines
82 B
Plaintext
Vendored
5 lines
82 B
Plaintext
Vendored
class My(val x: Int)
|
|
|
|
fun foo(arg: Any?): Int {
|
|
return (arg as? My)?.x ?: 42
|
|
} |