Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
t
/
t4018
/
java-sealed
Code
Commits
Pulls
CI/CD
81,841
master
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
}