[FIR] Don't check Java annotations for cycles

^KT-64083 fixed
This commit is contained in:
Nikita Nazarov
2023-12-05 13:35:46 +01:00
committed by teamcity
parent 1726a94c87
commit 0898dd1e7f
7 changed files with 46 additions and 0 deletions
@@ -0,0 +1,13 @@
// FIR_IDENTICAL
// ISSUE: KT-64083
// FILE: ThreadSafe.java
public @interface ThreadSafe {
String reason() default "";
}
// FILE: test.kt
private annotation class AutoFactoryThreadSafe(
val threadSafe: ThreadSafe = ThreadSafe()
)