annotate gcc/testsuite/gnat.dg/aggr11.adb @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 -- { dg-do compile }
kono
parents:
diff changeset
2 -- { dg-options "-O" }
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 with Aggr11_Pkg; use Aggr11_Pkg;
kono
parents:
diff changeset
5
kono
parents:
diff changeset
6 procedure Aggr11 is
kono
parents:
diff changeset
7
kono
parents:
diff changeset
8 A : Arr := ((1 => (Kind => No_Error, B => True),
kono
parents:
diff changeset
9 2 => (Kind => Error),
kono
parents:
diff changeset
10 3 => (Kind => Error),
kono
parents:
diff changeset
11 4 => (Kind => No_Error, B => True),
kono
parents:
diff changeset
12 5 => (Kind => No_Error, B => True),
kono
parents:
diff changeset
13 6 => (Kind => No_Error, B => True)));
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 begin
kono
parents:
diff changeset
16 null;
kono
parents:
diff changeset
17 end;