Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/javaAnnotationWithParameter.kt
T
Nikita Nazarov 0898dd1e7f [FIR] Don't check Java annotations for cycles
^KT-64083 fixed
2023-12-07 08:56:56 +00:00

14 lines
242 B
Kotlin
Vendored

// 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()
)