mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-09 05:36:54 +07:00
8 lines
115 B
Java
8 lines
115 B
Java
// "Cast argument to 'float'" "true-preview"
|
|
class Test {
|
|
void bar() {
|
|
foo(2.F);
|
|
}
|
|
void foo(float f){}
|
|
}
|