[LC] rename lightClasses/lightClasses to lightClasses/lightClassByFqName

This commit is contained in:
Dmitrii Gridin
2022-12-22 13:36:16 +01:00
committed by teamcity
parent 81a939409a
commit 742c3de112
235 changed files with 6 additions and 6 deletions
@@ -0,0 +1,33 @@
// p.Annotations
package p
class Annotations {
@R("a") @R("b") @R("c")
fun repeatables1() {
}
@R("a")
fun repeatables2() {
}
@R("a") @S("b") @R("c") @S("D") @R("f")
fun repeatables3() {
}
}
@Repeatable
@Retention(AnnotationRetention.SOURCE)
annotation class S(val g: String)
@Repeatable
@Retention(AnnotationRetention.SOURCE)
annotation class R(val s: String)
// FIR_COMPARISON