annotate gcc/testsuite/gnat.dg/aggr19.adb @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +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 run }
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 with Aggr19_Pkg; use Aggr19_Pkg;
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 procedure Aggr19 is
kono
parents:
diff changeset
6 C : Rec5
kono
parents:
diff changeset
7 := (Ent => (Kind => Two, Node => (L => (D => True, Pos => 1 )), I => 0));
kono
parents:
diff changeset
8 A : Rec5 := C;
kono
parents:
diff changeset
9 begin
kono
parents:
diff changeset
10 Proc (A);
kono
parents:
diff changeset
11 if A /= C then
kono
parents:
diff changeset
12 raise Program_Error;
kono
parents:
diff changeset
13 end if;
kono
parents:
diff changeset
14 end;