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