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

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