Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
annotations
/
duplicateAttribute.java
blob: 8e21546de48ab7ede1f1e4369e2205c662002f1f [
file
] [
log
] [
blame
]
@interface
A
{
int
value
();
}
@A
(
value
=
0
,
<
error descr
=
"Duplicate attribute 'value'"
>
value
=
1
</
error
>)
class
C
{}