summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/multiModule/common/simpleDependencyErrorOnAccessToInternal2/module1_a.kt
blob: e7392045a0bc3d8866c907cb5c92b4a1bf8add04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package a

@Target(AnnotationTarget.FILE)
@Retention(AnnotationRetention.SOURCE)
internal annotation class InternalFileAnnotation()

@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.SOURCE)
internal annotation class InternalClassAnnotation()

class A

internal class InternalA

fun a() {
}

internal fun internalA() {
}