KT-1360 Vararg bug in front-end
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
fun f(vararg <!UNUSED_PARAMETER!>t<!> : Int, <!UNUSED_PARAMETER!>f<!> : ()->Unit) {
|
||||
}
|
||||
|
||||
fun test() {
|
||||
f {}
|
||||
f() {}
|
||||
f(1) {
|
||||
|
||||
}
|
||||
f(1, 2) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user