mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-11 00:06:57 +07:00
11 lines
140 B
Java
11 lines
140 B
Java
// "Wrap using 'Math.toIntExact()'" "true"
|
|
public class Test {
|
|
|
|
void m() {
|
|
|
|
int i = Math.toIntExact(Long.valueOf(123));
|
|
|
|
}
|
|
|
|
}
|