Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
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
();
}
}