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