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

java-non-sealed « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 069087c1c66045b470ddfdab243acbe86c50fbd9 (plain)
1
2
3
4
5
6
7
8
public abstract sealed class SealedClass {
    public static non-sealed class RIGHT extends SealedClass {
        static int ONE;
        static int TWO;
        static int THREE;
        private int ChangeMe;
    }
}