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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,caabf5265fad78e5 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!d32g2000yqh.googlegroups.com!not-for-mail From: Martin Newsgroups: comp.lang.ada Subject: Re: unsigned type Date: Tue, 30 Jun 2009 05:39:57 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: NNTP-Posting-Host: 20.133.0.8 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1246365597 10196 127.0.0.1 (30 Jun 2009 12:39:57 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 30 Jun 2009 12:39:57 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: d32g2000yqh.googlegroups.com; posting-host=20.133.0.8; posting-account=g4n69woAAACHKbpceNrvOhHWViIbdQ9G User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11,gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:6756 Date: 2009-06-30T05:39:57-07:00 List-Id: On Jun 29, 9:19=A0pm, a...@anon.org (anon) wrote: [snip] > =A0 =A0 =A0 =A0 A : String ; Compilation error - String is an unconstrained type. > =A0 =A0 =A0 =A0 A ( 1..1 ) -- is a valid string with a null range also eq= ual > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0-- to character reference of A ( 1= ) =A0 This isn't a null range...it's a range with a length of 1. If you want a null String, use: A : String :=3D ""; Cheers -- Martin