Files
kotlin-fork/jps-plugin/testData/incremental/inlineFunctionsUnchanged/usage.kt
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

7 lines
141 B
Kotlin

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