mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
13 lines
152 B
Java
13 lines
152 B
Java
// "Wrap parameter using 'Math.toIntExact()'" "true"
|
|
|
|
public class Test {
|
|
void m(int i) {
|
|
|
|
}
|
|
|
|
void method() {
|
|
m(Math.toIntExact(10L));
|
|
}
|
|
|
|
}
|