479711e812
Tweaked test generator to avoid creating test methods for parent directory of tests.
14 lines
211 B
Kotlin
Vendored
14 lines
211 B
Kotlin
Vendored
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()
|
|
}
|
|
}
|