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

14 lines
203 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_VARIABLE
fun foo() {
interface a {}
val b = object {
interface c {}
}
class A {
interface d {}
}
val f = {
interface e {}
}
}