mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
12 lines
157 B
Java
12 lines
157 B
Java
// "Create method 'test'" "true-preview"
|
|
public interface Test {
|
|
|
|
void test();
|
|
}
|
|
|
|
class Foo {
|
|
void bar() {
|
|
Test test = null;
|
|
test.test();
|
|
}
|
|
} |