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

7 lines
81 B
Kotlin
Vendored

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