mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
15 lines
208 B
Java
15 lines
208 B
Java
class D {
|
|
D first;
|
|
}
|
|
|
|
class Test {
|
|
private D myDSettings;
|
|
|
|
protected void setUp() {
|
|
myDSettings = null;
|
|
}
|
|
|
|
public void testModuleCycle() {
|
|
myDSettings.first = null;
|
|
}
|
|
} |