summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/annotations/missingAttribute.java
blob: 83807501f2ea8f45c3b722a3a35fd7333f7414bb (plain)
1
2
3
4
5
6
@interface Ann {
    int i ();
}

@<error descr="'i' missing though required">Ann</error>() class D {
}