Files
kotlin-fork/compiler/testData/diagnostics/tests/redeclarations/RedeclaredValueParameters.fir.kt
T
2021-08-10 15:09:26 +00:00

8 lines
196 B
Kotlin
Vendored

fun test(<!REDECLARATION!>a<!>: Int, <!REDECLARATION!>a<!>: String) {}
fun test2(block: (Int, String) -> Unit) { }
fun main() {
test2 { <!REDECLARATION!>b<!>, <!REDECLARATION!>b<!> -> ; }
}