Files
kotlin-fork/idea/testData/intentions/removeUnnecessaryParentheses/necessaryParentheses5.kt
T

8 lines
156 B
Kotlin
Vendored

// IS_APPLICABLE: false
interface Foo {
operator fun get(x : Any) : Foo
operator fun plus(x : Any) : Foo
}
fun foo(x: Foo) {
<caret>(x + x)[x]
}