e078eaf15b
Also add test checking functional expression
10 lines
186 B
Kotlin
Vendored
10 lines
186 B
Kotlin
Vendored
annotation class Ann(val x: String)
|
|
|
|
fun foo(block: () -> Unit) = block.javaClass
|
|
|
|
fun box() {
|
|
foo( @Ann("OK1") ({ }))
|
|
}
|
|
|
|
//local final fun <anonymous>(): kotlin.Unit defined in box
|