KT-5854 Incorrect 'Nested class should be qualified'

#KT-5854 Fixed
This commit is contained in:
Svetlana Isakova
2014-10-03 17:02:16 +04:00
parent 29fa87ee7c
commit b20327770b
5 changed files with 86 additions and 17 deletions
@@ -0,0 +1,11 @@
//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
}
}