mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 14:20:55 +07:00
8 lines
110 B
Java
8 lines
110 B
Java
// "Convert '2.' to float" "true"
|
|
class Test {
|
|
void bar() {
|
|
foo(2<caret>.);
|
|
}
|
|
void foo(float f){}
|
|
}
|