aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/algol68/execute/assignation-struct-1.a68
blob: a2d661b1837815b0cac70d70b3f25b6a395ab344 (plain)
1
2
3
4
5
6
# { dg-options "-fstropping=upper" }  #
BEGIN MODE NODE = STRUCT (INT one, two, three);
      NODE top;
      top := (10,20,30);
      ASSERT (two OF top = 20)
END