summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/general/AccessToInternalInProductionFromTests/src/src.kt
blob: a35e5b251818e72bbfcda73b61506d6e8c4d4b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fun foo() { }

internal fun internalBar() {}

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

@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.SOURCE)
internal annotation class InternalFunctionAnnotation()

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