X-Git-Url: https://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=Test.obn;h=da60894a8f758fa1ea09b7ef7f8195caa7367b55;hp=98ac0e23e370819a8b9e96db5387e7f64d97eb65;hb=dd188cb697c08d52aefb144a4f3a943dbf3388c5;hpb=a0ff807fe0e69c50469e506836467da32f23f754 diff --git a/Test.obn b/Test.obn index 98ac0e2..da60894 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; +PROCEDURE A; +END A; + +PROCEDURE B; + PROCEDURE A; + END A; +END B; -BEGIN - a := NIL; - b := NIL; - c := NIL; END Test.