Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inner
/
kt5854.kt
blob: 5a7ffd7070c3cbd5e9a35706730d17875fba0b44 [
file
]
// FIR_IDENTICAL
//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
}
}