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