mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
test++
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
class Test {
|
||||
void foo(Param param) {
|
||||
bar(param.getS());
|
||||
}
|
||||
|
||||
void bar(String s){}
|
||||
|
||||
public static class Param {
|
||||
private final String s;
|
||||
|
||||
public Param(String s) {
|
||||
this.s = s;
|
||||
}
|
||||
|
||||
public String getS() {
|
||||
return s;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user