6ebe0c30ec
#KT-9299 Fixed
19 lines
442 B
Kotlin
Vendored
19 lines
442 B
Kotlin
Vendored
package test
|
|
|
|
internal open class InternalClass1
|
|
|
|
@Target(AnnotationTarget.FILE)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
internal annotation class InternalFileAnnotation()
|
|
|
|
@Target(AnnotationTarget.CLASS)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
internal annotation class InternalClassAnnotation()
|
|
|
|
abstract class ClassA1(internal val member: Int)
|
|
|
|
abstract class ClassB1 {
|
|
internal abstract val member: Int
|
|
}
|
|
|
|
class ClassD: InternalClass2() |