Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
annotations
/
RecursiveAnnotation.java
blob: 80118cc75ff5c15ce8a501a8d09d85967f23fe1d [
file
]
package
test
;
public
interface
RecursiveAnnotation
{
@B
(
@A
(
"test"
))
public
@interface
A
{
String
value
();
}
@B
(
@A
(
"test"
))
public
@interface
B
{
A value
();
}
}