Files
kotlin-fork/jps-plugin/testData/incremental/inlineFunctionsUnchanged/inline.kt.new
T
Evgeny Gerashchenko f8ac8f727e Merged tests with inline functions in class and in package.
Now this test also checks situation when several class files with inline functions are emitted from one source file.
2014-07-07 17:41:38 +04:00

14 lines
211 B
Plaintext

package inline
inline fun f(body: () -> Unit) {
println("i'm inline function")
body()
}
class Klass {
inline fun f(body: () -> Unit) {
println("i'm inline function")
body()
}
}