9 lines
158 B
Kotlin
Vendored
9 lines
158 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun test() {
|
|
class Test {
|
|
fun unaryPlus(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test.unaryPl<caret>us(1)
|
|
}
|