479711e812
Tweaked test generator to avoid creating test methods for parent directory of tests.
11 lines
167 B
Kotlin
Vendored
11 lines
167 B
Kotlin
Vendored
package test
|
|
|
|
inline fun a(body: () -> Unit) {
|
|
println("i'm inline function a")
|
|
body()
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
b { println("to be inlined") }
|
|
}
|