12 lines
206 B
Kotlin
Vendored
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
|
|
}
|
|
}
|