Files
kotlin-fork/idea/testData/codeInsight/codeTransformations/removeUnnecessaryParentheses/unnecessaryParentheses3.kt
T
2013-04-19 08:41:31 +02:00

6 lines
81 B
Kotlin

trait Foo {
fun get(x : Any) : Foo
}
fun foo(x: Foo) {
<caret>(x[x])[x]
}