X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=6fae5299c4ceb508ddf3708622d39e419e562a12;hb=0a98f4783fa8f0a7c1aaaf3dbeaf0aec8f4652b9;hp=ecfde58b9f0e5fadb5eb6a9a884a62ede7a56351;hpb=674b8e806962b40992601aca7f1234103a3aefb0;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index ecfde58..6fae529 100644 --- a/Test.obn +++ b/Test.obn @@ -1,21 +1,3 @@ MODULE Test; -TYPE - A = POINTER TO RECORD B : B; END; - - B = POINTER TO RECORD x : A END; - -VAR - a : A; - -PROCEDURE Do; - TYPE - ListPtr = POINTER TO ListNode; - ListNode = RECORD next: ListPtr END; -BEGIN -END Do; - -BEGIN - NEW(a); - a.B := NIL; END Test.