mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 06:05:50 +07:00
GitOrigin-RevId: 18963c681bcc93e2ed9ba72cec75a026aab1b345
12 lines
170 B
Java
12 lines
170 B
Java
public interface Test {
|
|
void foo(Param param);
|
|
|
|
private static record Param(String s) {
|
|
}
|
|
}
|
|
|
|
class TestImpl implements Test {
|
|
void foo(Test.Param param){}
|
|
}
|
|
|