import java.lang.annotation.*;

class B38203081 {
    void g(int @A [] @B ... xs) {
        System.out.println("Called g with " + xs.length + " arrays");
    }

    public static void main(String[] args) throws Exception {
        var obj = new B38203081();
        obj.g(new int[]{1, 2}, new int[]{3, 4});
    }
}

@Target(ElementType.TYPE_USE)
@Retention(RetentionPolicy.RUNTIME)
@interface A {}

@Target(ElementType.TYPE_USE)
@Retention(RetentionPolicy.RUNTIME)
@interface B {}

