Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/inlineFunctionsCircularDependency/a.kt.new
T
Evgeny Gerashchenko 479711e812 Moved current incremental compiler test data into subdirectory.
Tweaked test generator to avoid creating test methods for parent directory of tests.
2014-07-10 15:05:20 +04:00

11 lines
167 B
Plaintext
Vendored

package test
inline fun a(body: () -> Unit) {
body()
println("i'm inline function a")
}
fun main(args: Array<String>) {
b { println("to be inlined") }
}