blob: 9f3d258238d368bfd6503df3c0e8d054b434053e [file]
annotation class Ann(val x: String)
fun foo(block: () -> Unit) = block.javaClass
fun box() {
foo( @Ann("OK1") fun() {})
}
//@Ann(x = "OK1") local final fun <no name provided>(): kotlin.Unit defined in box