12 lines
223 B
Plaintext
Vendored
12 lines
223 B
Plaintext
Vendored
// "Create function 'foo'" "true"
|
|
|
|
fun <T> run(f: () -> T) = f()
|
|
|
|
fun test() {
|
|
run { foo() }
|
|
}
|
|
|
|
fun foo(): Any {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|