Files
kotlin-fork/compiler/testData/diagnostics/tests/overload/RedeclarationThroughDestructuring.kt
T
2023-07-28 13:28:06 +00:00

9 lines
208 B
Kotlin
Vendored

// RENDER_DIAGNOSTICS_FULL_TEXT
data class Example(val a: String, val b: Int) {
fun testRedeclaration(e: Example){
val (<!REDECLARATION!>b<!>, <!NAME_SHADOWING, REDECLARATION!>b<!>) = e
}
}