f8ac8f727e
Now this test also checks situation when several class files with inline functions are emitted from one source file.
14 lines
211 B
Kotlin
14 lines
211 B
Kotlin
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()
|
|
}
|
|
}
|