X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=be037a255a86681dfd6dde8cb1ddea47041586bf;hb=1128fa8566c932e3996abd427fc75bc4c946e656;hp=363783e2baa8fa206a03e87c99ad827c66b77d6d;hpb=9e17ac5ff506785891f06e3beeba66185fc7f867;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 363783e..be037a2 100644 --- a/Test.obn +++ b/Test.obn @@ -1,17 +1,11 @@ MODULE Test; TYPE - R1 = RECORD END; -(* R2 = RECORD (R1) END; *) - R3 = RECORD END; -VAR -(* - a : R1; - b : R2; -*) - c : R3; + PC = ARRAY 3 OF PB; + + B = RECORD z : PC; next : PB END; + + PB = POINTER TO B; -BEGIN -(* a := b; *) END Test.