3d60ed8874
^KT-59057 Merge-request: KT-MR-10747 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
15 lines
343 B
Kotlin
Vendored
15 lines
343 B
Kotlin
Vendored
fun box(): String {
|
|
var x = 42
|
|
|
|
val k1 = (x++)::class
|
|
if (k1 != Int::class) return "Fail 1: $k1"
|
|
if (x != 43) return "Fail 2: $x"
|
|
|
|
val k2 = { x *= 2; x }()::class
|
|
// Note that k2 is the class of the wrapper type Int
|
|
if (k2 != Int::class) return "Fail 3: $k2"
|
|
if (x != 86) return "Fail 4: $x"
|
|
|
|
return "OK"
|
|
}
|