5089df2441
#KT-25501 Fixed
9 lines
148 B
Kotlin
Vendored
9 lines
148 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun test() {
|
|
class Test {
|
|
operator fun dec(): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test.dec<caret>()
|
|
}
|