mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 08:34:22 +07:00
GitOrigin-RevId: 7de48b2542e2fe0a0f8503ab3dd3c4d34784747c
8 lines
161 B
Java
8 lines
161 B
Java
class Main {
|
|
String foo(int x) { return "1";}
|
|
StringBuilder foo(String x) { return new StringBuilder();}
|
|
|
|
void test() {
|
|
foo(1.25).length()<caret>
|
|
}
|
|
} |