DEADSOFTWARE

JVM: Реализованы переменные-процедуры в генераторе
[dsw-obn.git] / JTest.java
index 2cf5ff94dc9dbe7b5cd163370d20adbad9436442..0e621c810eeccced5045ef3bfccff3394b6b83f0 100644 (file)
@@ -1,12 +1,8 @@
 class JTest
 {
-       static class REC {}
+       public static JTest pointer;
 
-       public JTest()
        {
-               REC[][] ccooll = new REC[16][32];
-               for(int i = 0; i < ccooll.length; i++)
-                       for(int j = 0; j < ccooll[i].length; j++)
-                               ccooll[i][j] = new REC();
+               pointer = this;
        }
 }