6 lines
115 B
Plaintext
Vendored
6 lines
115 B
Plaintext
Vendored
// HIGHLIGHT: INFORMATION
|
|
class My(val x: Int)
|
|
|
|
fun foo(arg: Any?): Int? {
|
|
return (arg as? My)?.x?.hashCode()
|
|
} |