
package q;
import p.Exceptions;
import p.Exceptions.*;
public class Test {
    public static void main(String[] args) {
        try {
            if (false) { throw new E2(); }
            throw new E1();
        } catch (E1 | E2 e) {
            e.m(); // javac 11: ...defined in an inaccessible class...
        }
    }
}