mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
7 lines
138 B
Plaintext
7 lines
138 B
Plaintext
public class CompositeAssignmentCast {
|
|
public static int foo() {
|
|
int d;
|
|
d = (int) (4 * 1.5);
|
|
return d;
|
|
}
|
|
} |