mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 489422cffc7aecacd07468009da620a5732ce5ba
21 lines
291 B
Plaintext
21 lines
291 B
Plaintext
public class ExpData {
|
|
|
|
private Object provideObject() {
|
|
return new Object();
|
|
}
|
|
|
|
public static void useStatic(Object p) {
|
|
System.out.println(p);
|
|
}
|
|
|
|
public void context() {
|
|
inlineE();
|
|
}
|
|
|
|
public static void inlineE() {
|
|
useStatic(new DD[10]);
|
|
}
|
|
|
|
class DD {}
|
|
}
|