blob: a1127ebf3b8a8625743c4560c1665503a854272e [file] [log] [blame]
# { dg-options "-fstropping=upper" } #
BEGIN MODE NODE = STRUCT (INT code, REF NODE next);
NODE top = (20, NIL);
ASSERT (code OF top = 20);
ASSERT (next OF top :=: NIL)
END