Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/classes/AnnotationInClassObject.kt
Pavel V. Talanov cceb5738c8 Can't omit default object name in imports and types
There should be only one way to denote a type (A.Default.B can't be denoted as A.B)
2015-03-03 13:04:28 +03:00

13 lines
188 B
Kotlin

package test
class A {
class object {
annotation class Anno1
class B {
annotation class Anno2
}
}
}
A.Default.Anno1 A.Default.B.Anno2 class C