5 lines
89 B
Plaintext
Vendored
5 lines
89 B
Plaintext
Vendored
class My(val x: Int)
|
|
|
|
fun foo(arg: Any?): Int? {
|
|
return (arg as? My)?.x?.hashCode()
|
|
} |