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

12 lines
206 B
Kotlin
Vendored

//KT-5854 Incorrect 'Nested class should be qualified'
class A {
class Nested {
}
fun foo() {
<!INAPPLICABLE_CANDIDATE!>Nested<!>(1) //two errors here, the first one is wrong
}
}