Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / ada / acats / tests / c3 / c36302a.ada
blob1e71598791decc4d0760ee661d02c87b4d84e746
1 -- C36302A.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 A STRING VARIABLE MAY BE DECLARED WITH AN INDEX
26 -- STARTING WITH AN INTEGER GREATER THAN 1.
28 -- DAT 2/17/81
29 -- JWC 6/28/85 RENAMED TO -AB
31 WITH REPORT;
32 PROCEDURE C36302A IS
34 USE REPORT;
36 S5 : STRING (5 .. 10);
37 SX : STRING (INTEGER'LAST - 5 .. INTEGER'LAST);
39 BEGIN
40 TEST ("C36302A", "STRING VARIABLE INDICES NEEDN'T START AT 1");
42 IF S5'FIRST /= 5
43 OR S5'LAST /= 10
44 OR S5'LENGTH /= 6
45 OR SX'FIRST /= INTEGER'LAST - 5
46 OR SX'LAST /= INTEGER'LAST
47 OR SX'LENGTH /= 6
48 THEN
49 FAILED ("WRONG STRING ATTRIBUTES");
50 END IF;
52 RESULT;
53 END C36302A;