12 lines
112 B
Plaintext
Vendored
12 lines
112 B
Plaintext
Vendored
// "Create class 'Foo'" "true"
|
|
|
|
fun <T> run(f: () -> T) = f()
|
|
|
|
fun test() {
|
|
run { Foo() }
|
|
}
|
|
|
|
class Foo {
|
|
|
|
}
|