479711e812
Tweaked test generator to avoid creating test methods for parent directory of tests.
8 lines
139 B
Kotlin
Vendored
8 lines
139 B
Kotlin
Vendored
package test
|
|
|
|
inline fun b(body: () -> Unit) {
|
|
println("I'm inline function b")
|
|
body()
|
|
a { println("To be inlined from b") }
|
|
}
|