Files
kotlin-fork/compiler/testData/diagnostics/tests/redeclarations/RedeclarationInMultiFile.fir.kt
T

10 lines
85 B
Kotlin
Vendored

// FILE: a.kt
val a : Int = 1
fun f() {
}
// FILE: b.kt
val a : Int = 1
fun f() {
}