54e7fe6c52
This does not work in 1.3 because mod is no more supported
11 lines
174 B
Kotlin
Vendored
11 lines
174 B
Kotlin
Vendored
// PROBLEM: none
|
|
// LANGUAGE_VERSION: 1.2
|
|
|
|
fun test() {
|
|
class Test {
|
|
operator fun mod(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test.<caret>mod(1)
|
|
}
|