Add tests for KT-12199 to prevent regression
#KT-12199 Obsolete
Original commit: 712b2c8117
This commit is contained in:
@@ -1,3 +1,15 @@
|
||||
fun foo() { }
|
||||
|
||||
internal fun internalBar() {}
|
||||
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()
|
||||
|
||||
Reference in New Issue
Block a user