aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/algol68/execute/identity-declaration-multiple-empty-2.a68
blob: 67b5294d15b642f477e831fb8f9f2037bd6a7b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# { dg-options "-fstropping=upper" }  #
BEGIN [,,]INT a = ();
      ASSERT (1 UPB a = 0);
      ASSERT (1 LWB a = 1);
      ASSERT (1 ELEMS a = 0);
      ASSERT (2 UPB a = 0);
      ASSERT (2 LWB a = 1);
      ASSERT (2 ELEMS a = 0);
      ASSERT (3 UPB a = 0);
      ASSERT (3 LWB a = 1);
      ASSERT (3 ELEMS a = 0)
END