aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr211052/SimpleAnnotation.java
blob: 5877ab34298717856b47abd213c1055996121602 (plain)
1
2
3
4
5
6
7
8
package a.b;
import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@interface SimpleAnnotation {
  String classname();
}