From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=BAYES_00,INVALID_DATE autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,502eafcf316bcb10 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 1994-12-12 05:47:19 PST Path: bga.com!news.sprintlink.net!howland.reston.ans.net!news1.digex.net!ois.com!ois.com!not-for-mail From: beckwb@ois.com (R. William Beckwith) Newsgroups: comp.lang.ada Subject: Re: Ada can't initialize (aggregate) array of length 1? Date: 12 Dec 1994 08:20:01 -0500 Organization: Objective Interface Systems, Inc. Message-ID: <3chim1$6v5@gamma.ois.com> References: <1994Dec12.081230.24978@roxi.rz.fht-mannheim.de> NNTP-Posting-Host: gamma.ois.com X-Newsreader: TIN [version 1.2 PL2] Date: 1994-12-12T08:20:01-05:00 List-Id: Dirk Zoller (duz@roxi.rz.fht-mannheim.de) wrote: : type stone is array (1..2) of character; : shapes: constant array (1..1) of stone := ("[]"); Try: shapes: constant array (1..1) of stone := (others => "[]"); ... Bill