7 lines
129 B
Plaintext
Vendored
7 lines
129 B
Plaintext
Vendored
class C() {
|
|
operator fun get(i: Int) = i + 1
|
|
|
|
// KT-4513: Unnecessary parenthesis around 'this'
|
|
val foo = this[41]
|
|
}
|