X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=be037a255a86681dfd6dde8cb1ddea47041586bf;hb=1128fa8566c932e3996abd427fc75bc4c946e656;hp=babecff95eba9648125ff9e686de586d643d366e;hpb=95acec6c3ae8d3c324c84b001a680aa49320790b;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index babecff..be037a2 100644 --- a/Test.obn +++ b/Test.obn @@ -1,5 +1,11 @@ MODULE Test; -BEGIN - ASSERT(ODD(5)); +TYPE + + PC = ARRAY 3 OF PB; + + B = RECORD z : PC; next : PB END; + + PB = POINTER TO B; + END Test.