mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 16:17:00 +07:00
11 lines
174 B
Java
11 lines
174 B
Java
import org.jetbrains.annotations.TestOnly;
|
|
|
|
public class D {
|
|
public void test() {
|
|
new Runnable() {
|
|
public void run() {
|
|
new A().foo();
|
|
}
|
|
};
|
|
}
|
|
} |