mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-08 21:06:52 +07:00
13 lines
194 B
Java
13 lines
194 B
Java
// "Wrap 2nd parameter using 'Math.toIntExact()'" "true"
|
|
public class Test {
|
|
|
|
void longMethod(int k, int thisIsInt) {
|
|
|
|
}
|
|
|
|
void m(long ll) {
|
|
longMethod(13, Math.toIntExact(ll));
|
|
}
|
|
|
|
}
|