mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 04:07:09 +07:00
15 lines
331 B
Java
15 lines
331 B
Java
|
|
public class BrokenAlignment {
|
|
private static void foo(long value) {
|
|
if (value == (byte)value) {
|
|
System.out.println("1");
|
|
} else if (value == (short)value) {
|
|
System.out.println("2");
|
|
} else if (value == (int)value) {
|
|
System.out.println("3");
|
|
} else {
|
|
System.out.println("4");
|
|
}
|
|
}
|
|
|
|
} |