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