8 lines
364 B
Plaintext
Vendored
8 lines
364 B
Plaintext
Vendored
3 fun test(<bold>o: Any</bold>) { (in test(Any))
|
|
4 val x = <bold>o</bold> as String (in test(Any))
|
|
4 val x = <bold>o as String</bold> (in test(Any))
|
|
4 <bold>val x</bold> = o as String (in test(Any))
|
|
5 val y = <bold>o</bold> as? String (in test(Any))
|
|
5 val y = <bold>o as? String</bold> (in test(Any))
|
|
5 <bold>val y</bold> = o as? String (in test(Any))
|