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.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,799bdb14b530ce1d X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.66.86.67 with SMTP id n3mr1050889paz.43.1349470853162; Fri, 05 Oct 2012 14:00:53 -0700 (PDT) Received: by 10.68.134.129 with SMTP id pk1mr3531804pbb.13.1349470853106; Fri, 05 Oct 2012 14:00:53 -0700 (PDT) Path: t10ni23613332pbh.0!nntp.google.com!kt20no11295018pbb.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 5 Oct 2012 14:00:52 -0700 (PDT) In-Reply-To: <99b6ed38-0a44-4649-82b7-0b724fa5e68f@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=69.20.190.126; posting-account=lJ3JNwoAAAAQfH3VV9vttJLkThaxtTfC NNTP-Posting-Host: 69.20.190.126 References: <99b6ed38-0a44-4649-82b7-0b724fa5e68f@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <5e6b8e61-50c5-4398-9407-60276a070f4f@googlegroups.com> Subject: Re: Odd subtyping error. From: Shark8 Injection-Date: Fri, 05 Oct 2012 21:00:53 +0000 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-10-05T14:00:52-07:00 List-Id: Package Subtype_Error is Type Base_Type is ( Item_1, Item_2, Item_3, Item_4, Item_5 ) with Size => Integer'Size; SubType Derived_Type is Base_Type Range Item_2..Item_4; Private For Base_Type Use ( Item_1 => 18, Item_2 => 21, Item_3 => 22, Item_4 => 25, Item_5 => 28 ); End Subtype_Error;