
  // IntelliJ API Decompiler stub source generated from a class file
  // Implementation of methods is not available

package pkg;

class MemberAnnotations {
    @pkg.MemberAnnotations.A("const")
    public static final int CONST = 42;
    @pkg.MemberAnnotations.A("field")
    private int f;

    MemberAnnotations() { /* compiled code */ }

    @pkg.MemberAnnotations.A("return")
    private int f(@pkg.MemberAnnotations.A("arg") int i) { /* compiled code */ }

    @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
    static @interface A {
        java.lang.String value() default "";
    }
}