X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=be037a255a86681dfd6dde8cb1ddea47041586bf;hb=1128fa8566c932e3996abd427fc75bc4c946e656;hp=98ac0e23e370819a8b9e96db5387e7f64d97eb65;hpb=a0ff807fe0e69c50469e506836467da32f23f754;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index 98ac0e2..be037a2 100644 --- a/Test.obn +++ b/Test.obn @@ -1,12 +1,11 @@ MODULE Test; -VAR - a : POINTER TO RECORD END; - b : POINTER TO ARRAY OF INTEGER; - c : PROCEDURE; - -BEGIN - a := NIL; - b := NIL; - c := NIL; +TYPE + + PC = ARRAY 3 OF PB; + + B = RECORD z : PC; next : PB END; + + PB = POINTER TO B; + END Test.