blob: 069087c1c66045b470ddfdab243acbe86c50fbd9 (
plain) (
blame)
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;
}
}
|