// WITH_STDLIB class Inv fun bar(x: Inv.() -> Unit) = x fun box(): String { listOf( bar { }, bar { } // the problem is here ) return "OK" }