X-Git-Url: http://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=JTest.java;h=2cf5ff94dc9dbe7b5cd163370d20adbad9436442;hp=1ce17666f7f8b8b0732205ca22a0b6ba49b269a4;hb=9a82efe08fea56335f331158344b17e6d5280a85;hpb=ee2ed2913463eecbb379e8c018006cc911d4b683 diff --git a/JTest.java b/JTest.java index 1ce1766..2cf5ff9 100644 --- a/JTest.java +++ b/JTest.java @@ -1,9 +1,12 @@ class JTest { - boolean[] z; + static class REC {} - void x(boolean y) + public JTest() { - z[666] = y; + 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(); } }