37cd7eb1ba
Use INACCESSIBLE_OUTER_CLASS_EXPRESSION error for marking already resolved elements #KT-3261 Fixed
11 lines
286 B
Kotlin
11 lines
286 B
Kotlin
class Test {
|
|
[`InnerAnnotation`InnerAnnotation]
|
|
class object : StaticClass(), <!INACCESSIBLE_OUTER_CLASS_EXPRESSION!><!MANY_CLASSES_IN_SUPERTYPE_LIST!>InnerClass<!>()<!> {
|
|
|
|
}
|
|
|
|
annotation class InnerAnnotation
|
|
open class StaticClass
|
|
|
|
open inner class InnerClass
|
|
} |