1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
-- C392013.A
--
-- Grant of Unlimited Rights
--
-- The Ada Conformity Assessment Authority (ACAA) holds unlimited
-- rights in the software and documentation contained herein. Unlimited
-- rights are the same as those granted by the U.S. Government for older
-- parts of the Ada Conformity Assessment Test Suite, and are defined
-- in DFAR 252.227-7013(a)(19). By making this public release, the ACAA
-- intends to confer upon all recipients unlimited rights equal to those
-- held by the ACAA. These rights include rights to use, duplicate,
-- release or disclose the released technical data and computer software
-- in whole or in part, in any manner and for any purpose whatsoever, and
-- to have or permit others to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
--
-- OBJECTIVE:
-- Check that the "/=" implicitly declared with the declaration of "=" for
-- a tagged type is legal and can be used in a dispatching call.
-- (Defect Report 8652/0010, as reflected in Technical Corrigendum 1).
--
-- CHANGE HISTORY:
-- 23 JAN 2001 PHL Initial version.
-- 16 MAR 2001 RLB Readied for release; added identity and negative
-- result cases.
-- 24 MAY 2001 RLB Corrected the result for the 9 vs. 9 case.
--!
with Report;
use Report;
procedure C392013 is
package P1 is
type T is tagged
record
C1 : Integer;
end record;
function "=" (L, R : T) return Boolean;
end P1;
package P2 is
type T is new P1.T with private;
function Make (Ancestor : P1.T; X : Float) return T;
private
type T is new P1.T with
record
C2 : Float;
end record;
function "=" (L, R : T) return Boolean;
end P2;
package P3 is
type T is new P2.T with
record
C3 : Character;
end record;
private
function "=" (L, R : T) return Boolean;
function Make (Ancestor : P1.T; X : Float) return T;
end P3;
package body P1 is separate;
package body P2 is separate;
package body P3 is separate;
type Cwat is access P1.T'Class;
type Cwat_Array is array (Positive range <>) of Cwat;
A : constant Cwat_Array :=
(1 => new P1.T'(C1 => Ident_Int (3)),
2 => new P2.T'(P2.Make (Ancestor => (C1 => Ident_Int (5)), X => 4.0)),
3 => new P2.T'(P2.Make (Ancestor => (C1 => Ident_Int (-5)), X => 4.2)),
4 => new P1.T'(C1 => Ident_Int (-3)),
5 => new P2.T'(P2.Make (Ancestor => (C1 => Ident_Int (5)), X => 3.6)),
6 => new P1.T'(C1 => Ident_Int (4)),
7 => new P3.T'(P2.Make
(Ancestor => (C1 => Ident_Int (4)), X => 1.2) with
Ident_Char ('a')),
8 => new P3.T'(P2.Make
(Ancestor => (C1 => Ident_Int (-4)), X => 1.3) with
Ident_Char ('A')),
9 => new P3.T'(P2.Make
(Ancestor => (C1 => Ident_Int (4)), X => 1.0) with
Ident_Char ('B')));
type Truth is ('F', 'T');
type Truth_Table is array (Positive range <>, Positive range <>) of Truth;
Equality : constant Truth_Table (A'Range, A'Range) := ("TFFTFFFFF",
"FTTFTFFFF",
"FTTFFFFFF",
"TFFTFFFFF",
"FTFFTFFFF",
"FFFFFTFFF",
"FFFFFFTTF",
"FFFFFFTTF",
"FFFFFFFFT");
begin
Test ("C392013", "Check that the ""/="" implicitly declared " &
"with the declaration of ""="" for a tagged " &
"type is legal and can be used in a dispatching call");
for I in A'Range loop
for J in A'Range loop
-- Test identity:
if P1."=" (A (I).all, A (J).all) /=
(not P1."/=" (A (I).all, A (J).all)) then
Failed ("Incorrect identity comparing objects" &
Positive'Image (I) & " and" & Positive'Image (J));
end if;
-- Test the result of "/=":
if Equality (I, J) = 'T' then
if P1."/=" (A (I).all, A (J).all) then
Failed ("Incorrect result comparing objects" &
Positive'Image (I) & " and" & Positive'Image (J) & " - T");
end if;
else
if not P1."/=" (A (I).all, A (J).all) then
Failed ("Incorrect result comparing objects" &
Positive'Image (I) & " and" & Positive'Image (J) & " - F");
end if;
end if;
end loop;
end loop;
Result;
end C392013;
separate (C392013)
package body P1 is
function "=" (L, R : T) return Boolean is
begin
return abs L.C1 = abs R.C1;
end "=";
end P1;
separate (C392013)
package body P2 is
function "=" (L, R : T) return Boolean is
begin
return P1."=" (P1.T (L), P1.T (R)) and then abs (L.C2 - R.C2) <= 0.5;
end "=";
function Make (Ancestor : P1.T; X : Float) return T is
begin
return (Ancestor with X);
end Make;
end P2;
with Ada.Characters.Handling;
separate (C392013)
package body P3 is
function "=" (L, R : T) return Boolean is
begin
return P2."=" (P2.T (L), P2.T (R)) and then
Ada.Characters.Handling.To_Upper (L.C3) =
Ada.Characters.Handling.To_Upper (R.C3);
end "=";
function Make (Ancestor : P1.T; X : Float) return T is
begin
return (P2.Make (Ancestor, X) with ' ');
end Make;
end P3;
|