Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
javaAnnotationWithParameter.kt
blob: fc6576800d0a224a0c3909fd757cd6eefd7b9616 [
file
]
// 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
()
)