Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/kt5854.kt
T
2014-10-18 11:06:52 +04:00

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
}
}