aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-symbol-solver-testing/src/test/resources/Annotations.java.txt
blob: 910777bff6f2d1f29afe2c0d7647bb677ab8f468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package foo.bar;

public @interface MyAnnotation {
}

public @interface MyAnnotation2 {
}

public @interface MyAnnotationWithFields {
    int field();
}

@MyAnnotation
class CA {

}

@MyAnnotation2
class CB extends CA {

}