mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
14 lines
223 B
Java
14 lines
223 B
Java
// "Create method 'test'" "true-preview"
|
|
public class Test {
|
|
public Test(Impl impl) {
|
|
impl.test(test());
|
|
}
|
|
|
|
private String test() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class Impl {
|
|
void test(String s) {}
|
|
} |