blob: 872e875d76e84573e4430a693191eab7f7f19d52 [file] [log] [blame]
MODULE testrecinit3 ;
TYPE
color = RECORD
r, g, b: CARDINAL ;
END ;
pixel = RECORD
fg, bg: color ;
END ;
PROCEDURE test ;
VAR
p: pixel ;
BEGIN
p.fg.r := 1 ;
p.fg.g := 2 ;
p.fg.b := 3 ;
p.bg.r := 4 ;
p.bg.g := 5 ;
p.bg.b := 6 ;
IF p.bg.b = 6
THEN
END
END test ;
BEGIN
test
END testrecinit3.