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