mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
18 lines
300 B
Java
18 lines
300 B
Java
// "Fix closing parenthesis placement" "true-preview"
|
|
public class Example {
|
|
String foo(String s, boolean b, boolean c) {
|
|
return s;
|
|
}
|
|
|
|
String bar(String s) {
|
|
return s;
|
|
}
|
|
|
|
String bar(String s, boolean b) {
|
|
return s;
|
|
}
|
|
|
|
void test() {
|
|
foo(bar("hello"), true, true);
|
|
}
|
|
} |