blob: 381a683bd9c3efc8fff7454b90761bd3ddb3966c [file]
// WITH_STDLIB
class Inv<T>
fun <T> bar(x: Inv<T>.() -> Unit) = x
fun box(): String {
listOf(
bar<Char> { },
bar { } // the problem is here
)
return "OK"
}