mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
10 lines
196 B
Java
10 lines
196 B
Java
class X {
|
|
void bar(String str){
|
|
foo(str, str.substring(0));
|
|
}
|
|
|
|
void foo(String str, String st<caret>r1) {
|
|
System.out.println(str);
|
|
System.out.println(str1);
|
|
}
|
|
} |