10 lines
149 B
Kotlin
Vendored
10 lines
149 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
fun test() {
|
|
class Test {
|
|
operator fun mod(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test.<caret>mod(1)
|
|
}
|