Files
T
Mikhael Bogdanov 2dcc0bce46 Inline refactoring: more templates for captured fields
Support of complex lambda inlining cases
2014-03-13 10:36:54 +04:00

6 lines
78 B
Kotlin

package test
inline fun <T> inlineFun(arg: T, f: (T) -> Unit) {
f(arg)
}