Files
kotlin-fork/idea/testData/intentions/convertParameterToReceiver/functionExpression.kt
T
2015-10-01 17:35:20 +03:00

7 lines
84 B
Kotlin
Vendored

interface T {
val foo: Int
}
val f = fun(<caret>t: T): Int {
return t.foo
}