X-Git-Url: http://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=Test.obn;h=be037a255a86681dfd6dde8cb1ddea47041586bf;hp=6fae5299c4ceb508ddf3708622d39e419e562a12;hb=1128fa8566c932e3996abd427fc75bc4c946e656;hpb=4e58c0e61815196bcf87405ab9d070631bc72f90 diff --git a/Test.obn b/Test.obn index 6fae529..be037a2 100644 --- a/Test.obn +++ b/Test.obn @@ -1,3 +1,11 @@ MODULE Test; +TYPE + + PC = ARRAY 3 OF PB; + + B = RECORD z : PC; next : PB END; + + PB = POINTER TO B; + END Test.