mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
13 lines
160 B
Java
13 lines
160 B
Java
// "Adapt argument using 'Math.toIntExact()'" "true-preview"
|
|
|
|
public class Test {
|
|
void m(int i) {
|
|
|
|
}
|
|
|
|
void method() {
|
|
m(Math.toIntExact(10L));
|
|
}
|
|
|
|
}
|