aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr148537/MyClass.java
blob: ee449254c061bd4fd638de05bd4a84d2bfa0b668 (plain)
1
2
3
4
5
6
7
8
import java.lang.annotation.*;

public class MyClass {

        @Retention({RetentionPolicy.RUNTIME})
        private @interface MyAnnotation {
        }
}