Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
t
/
t4018
/
java-non-sealed
Code
Commits
Pulls
CI/CD
82,027
next
bisect
jch
maint
master
next
seen
test
todo
text
8 lines
218 Bytes
Copy permalink
Copy
Raw
1
public abstract sealed class SealedClass {
2
public static non-sealed class RIGHT extends SealedClass {
3
static int ONE;
4
static int TWO;
5
static int THREE;
6
private int ChangeMe;
7
}
8
}