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

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