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

8 lines
134 B
Kotlin

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