712b2c8117
#KT-12199 Obsolete
26 lines
379 B
Kotlin
Vendored
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() {}
|
|
}
|
|
}
|