Welcome to mirror list, hosted at ThFree Co, Russian Federation.

java-sealed-permits « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18dd4894cff0d46b8ae0a8bce94359578574c3cc (plain)
1
2
3
4
5
6
public abstract sealed class RIGHT permits PermittedA, PermittedB {
    static int ONE;
    static int TWO;
    static int THREE;
    private int ChangeMe;
}