mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-09 20:13:44 +00:00
14 lines
156 B
Java
14 lines
156 B
Java
@SuppressWarnings("all")
|
|
interface Interfaces {
|
|
enum Ranks {
|
|
CLUBS,
|
|
HEARTS,
|
|
DIAMONDS,
|
|
SPADES;
|
|
}
|
|
int x = 10;
|
|
void y();
|
|
int a = 20;
|
|
void b();
|
|
}
|