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