Files
kotlin-fork/jps-plugin/testData/general/AccessToInternalInProductionFromTests/test/test.kt
T
Zalim Bashorov 712b2c8117 Add tests for KT-12199 to prevent regression
#KT-12199 Obsolete
2017-04-11 15:46:13 +03:00

26 lines
379 B
Kotlin
Vendored

@file:InternalFileAnnotation
@InternalFunctionAnnotation
fun test() {
foo()
internalBar()
@InternalClassAnnotation
class Local {
@InternalFunctionAnnotation
fun foo() {}
}
}
@InternalClassAnnotation
class Class {
@InternalFunctionAnnotation
fun foo() {}
@InternalClassAnnotation
class Nested {
@InternalFunctionAnnotation
fun foo() {}
}
}