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

7 lines
77 B
Plaintext
Vendored

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