mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-07 19:36:56 +07:00
11 lines
135 B
Java
11 lines
135 B
Java
// "Wrap using 'Math.toIntExact()'" "true"
|
|
public class Test {
|
|
|
|
void m(long l) {
|
|
|
|
int i = 10;
|
|
i = Math.toIntExact(l);
|
|
|
|
}
|
|
|
|
} |