23480a5698
#KT-9211 Fixed
10 lines
170 B
Kotlin
Vendored
10 lines
170 B
Kotlin
Vendored
package test
|
|
|
|
var res = 1
|
|
|
|
inline operator fun Int.get(z: Int, p: Int) = this + z + p
|
|
|
|
inline operator fun Int.set(z: Int, p: Int, l: Int) {
|
|
res = this + z + p + l
|
|
}
|