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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,1c1a139977eee854 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-04-22 06:17:00 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: dewar@gnat.com (Robert Dewar) Newsgroups: comp.lang.ada Subject: Re: Case statement and Integers. Date: 22 Apr 2002 06:16:58 -0700 Organization: http://groups.google.com/ Message-ID: <5ee5b646.0204220516.22c13f1b@posting.google.com> References: <5ee5b646.0204211905.16ee3dcb@posting.google.com> NNTP-Posting-Host: 205.232.38.244 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1019481419 10864 127.0.0.1 (22 Apr 2002 13:16:59 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 22 Apr 2002 13:16:59 GMT Xref: archiver1.google.com comp.lang.ada:22896 Date: 2002-04-22T13:16:59+00:00 List-Id: "Vadim Godunko" wrote in message news:... > Sorry, this is my mistake. The correct expamle: > > case Numbers (J) is > when Numbers_Array_Element_Type'First .. Pivot - 1 => > ... > when Pivot + 1 .. Numbers_Array_Element_Type'Last => > ... > when others => > null; > end case; I can only repeat what I said before: > > Please don't post junk code. If you are trying to be deliberately > > unhelpful, > > do it by email. If you really think that the above is correct, you are as > > seriously confused as the questioner :-) > > > > As always, I suggest that people actually compile any sample code they > > think of suggesting on CLA.