Files
kotlin-fork/jps-plugin/testData/incremental/packageInlineFunctionFromOurPackage/usage.kt
T
Evgeny Gerashchenko 6c8a9ba378 Basic detection for bytecode of inline functions in incremental compilation.
Basic rule is: bytecode of inline function changed -> recompile everything.
2014-07-07 17:41:35 +04:00

6 lines
83 B
Kotlin

package test
fun main(args: Array<String>) {
f { println("to be inlined") }
}