mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
16 lines
192 B
Java
16 lines
192 B
Java
class Test {
|
|
/**
|
|
* foo comment
|
|
*
|
|
* @param param
|
|
*/
|
|
void foo(Param param) {
|
|
bar(param.s());
|
|
}
|
|
|
|
void bar(String s){}
|
|
|
|
private static record Param(String s) {
|
|
}
|
|
}
|