Files
kotlin-fork/js/js.translator/testData/box/operatorOverloading/overloadedCallOnProperty.kt
T
2016-09-29 12:00:41 +03:00

21 lines
267 B
Kotlin
Vendored

package foo
var a = MyInt()
class MyInt() {
var b = 0
operator fun inc(): MyInt {
val res = MyInt();
res.b = b;
res.b++;
return res;
}
}
fun box(): String {
a++;
a++;
return if (a.b == 2) "OK" else "fail"
}