Code & Deploy
Code
Models
Repos
Sign in
@leroysheep
/
Socializer
Socializer
/
t
/
t4018
/
java-sealed
Code
Commits
Pulls
CI/CD
82,037
test
bisect
jch
maint
master
next
seen
test
todo
text
7 lines
166 Bytes
Copy permalink
Copy
Raw
1
public abstract sealed class Sealed { // RIGHT
2
static int ONE;
3
static int TWO;
4
static int THREE;
5
public final class ChangeMe extends Sealed {
6
}
7
}