Files
kotlin-fork/jps-plugin/testData/incremental/classInlineFunctionChanged/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
99 B
Kotlin

package usage
fun main(args: Array<String>) {
inline.Klass().f { println("to be inlined") }
}