Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / ada / acats / tests / c2 / c23006f.ada
blob6848ce97e4ad20306a4aefdebd0b2dd761c56174
1 -- C23006F.ADA
3 -- Grant of Unlimited Rights
4 --
5 -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
6 -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
7 -- unlimited rights in the software and documentation contained herein.
8 -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
9 -- this public release, the Government intends to confer upon all
10 -- recipients unlimited rights equal to those held by the Government.
11 -- These rights include rights to use, duplicate, release or disclose the
12 -- released technical data and computer software in whole or in part, in
13 -- any manner and for any purpose whatsoever, and to have or permit others
14 -- to do so.
16 -- DISCLAIMER
18 -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
19 -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
20 -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
21 -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
22 -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
23 -- PARTICULAR PURPOSE OF SAID MATERIAL.
24 --*
25 -- CHECK THAT UNDERSCORES ARE SIGNIFICANT IN LIBRARY PACKAGE NAMES
26 -- CREATED BY A GENERIC INSTANTIATION.
28 -- JBG 5/26/85
30 GENERIC
31 C : INTEGER;
32 PACKAGE C23006F_PKG IS
33 A : INTEGER := C;
34 END C23006F_PKG;
36 WITH C23006F_PKG;
37 PRAGMA ELABORATE (C23006F_PKG);
38 PACKAGE C23006F_INST IS NEW C23006F_PKG (1);
40 WITH REPORT; USE REPORT;
41 WITH C23006F_PKG;
42 PRAGMA ELABORATE (REPORT, C23006F_PKG);
43 PACKAGE C23006FINST IS NEW C23006F_PKG (IDENT_INT(2));
45 WITH C23006F_INST, C23006FINST;
46 WITH REPORT; USE REPORT;
47 PROCEDURE C23006F IS
48 BEGIN
49 TEST ("C23006F", "CHECK THAT UNDERSCORES ARE SIGNIFICANT IN " &
50 "NAMES USED FOR A LIBRARY PACKAGE INSTANTIATION");
52 IF C23006F_INST.A + IDENT_INT(1) /= C23006FINST.A THEN
53 FAILED ("INCORRECT PACKAGE IDENTIFICATION - 1");
54 END IF;
56 RESULT;
57 END C23006F;