479711e812
Tweaked test generator to avoid creating test methods for parent directory of tests.
9 lines
127 B
Kotlin
Vendored
9 lines
127 B
Kotlin
Vendored
package test
|
|
|
|
val property = ":)"
|
|
|
|
inline fun f(body: () -> Unit) {
|
|
println("i'm inline function" + property)
|
|
body()
|
|
}
|