b20327770b
#KT-5854 Fixed
12 lines
202 B
Kotlin
Vendored
12 lines
202 B
Kotlin
Vendored
//KT-5854 Incorrect 'Nested class should be qualified'
|
|
|
|
class A {
|
|
class Nested {
|
|
|
|
}
|
|
|
|
fun foo() {
|
|
Nested(<!TOO_MANY_ARGUMENTS!>1<!>) //two errors here, the first one is wrong
|
|
}
|
|
}
|