blob: 1c5601d26a2d66e2335f43c6051b341c0fa2429d [file] [log] [blame]
class Foo
class Bar
fun a(vararg a : Any) = a
fun test() {
a(1
, {}
, { -> 1}
, {1}
, {x}
, {-> 1}
, {x -> 1}
, {x, y -> 1}
, {x -> 1}
, {(x)}
)
}