mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
9 lines
187 B
Java
9 lines
187 B
Java
public class X {
|
|
private long l = 1l;
|
|
private boolean b = true;
|
|
private byte v = 1;
|
|
private short s = 1;
|
|
private int i = 1;
|
|
private float f = 1.0f;
|
|
private double d = 1.0;
|
|
} |