X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=f76917867cb0d1bcb880b7e0cf655f116919947f;hb=2990352489faafd75147773896021d7c8ef9e637;hp=b80d7a15c3a490308c7b343ab2843e710f22efde;hpb=49ad3c76fc9656759aab23d9034ebc33f8d8bd9d;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index b80d7a1..f769178 100644 --- a/Test.obn +++ b/Test.obn @@ -1,22 +1,12 @@ MODULE Test; -TYPE - R1 = RECORD END; - R2 = RECORD (R1) END; - R3 = RECORD END; - - P1 = POINTER TO R1; - P2 = POINTER TO R2; - VAR - a : R1; - b : R2; - c : R3; - p1 : P1; - p2 : P2; + i : SHORTINT; + s : SET; + +PROCEDURE X; +END X; BEGIN - a := b; - p2 := p1(P2); - p1 := p2(P2); + i := SHORT(12345); END Test.