9 lines
147 B
Plaintext
Vendored
9 lines
147 B
Plaintext
Vendored
// FIX: Replace with '+'
|
|
fun test() {
|
|
class Test {
|
|
operator fun plus(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test + 1
|
|
}
|