mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
15 lines
236 B
Kotlin
15 lines
236 B
Kotlin
|
|
fun bar() {
|
|
var x : Object? = java.lang.Integer.valueOf(1) as Object?
|
|
|
|
val y1 : Int = (x as Int?)!!
|
|
|
|
x = java.lang.Long.valueOf(1) as Object?
|
|
|
|
val y2 : Long = (x as Long?)!!
|
|
}
|
|
|
|
// 2 valueOf
|
|
// 1 intValue
|
|
// 1 longValue
|