479711e812
Tweaked test generator to avoid creating test methods for parent directory of tests.
9 lines
129 B
Plaintext
Vendored
9 lines
129 B
Plaintext
Vendored
package inline
|
|
|
|
class Klass {
|
|
inline fun f(body: () -> Unit) {
|
|
body()
|
|
println("i'm inline function")
|
|
}
|
|
}
|