mirror of
https://github.com/git/git
synced 2024-10-30 04:01:21 +00:00
9 lines
218 B
Text
9 lines
218 B
Text
|
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;
|
||
|
}
|
||
|
}
|