mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 02:25:56 +07:00
GitOrigin-RevId: 797f4121214eadfe1df74aadae0c2299dc178a02
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;
|
|
}
|
|
} |