1package android.test.anno;
2
3import java.lang.annotation.*;
4
5@Target(ElementType.CONSTRUCTOR)
6@Retention(RetentionPolicy.RUNTIME)
7
8public @interface AnnoSimpleConstructor {}
9