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: 103376,ee1a8b8db84c88f X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!news.glorb.com!border1.nntp.dca.giganews.com!local01.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Sun, 21 Aug 2005 11:59:02 -0500 From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Ada exception block does NOT work? References: X-Newsreader: Tom's custom newsreader Message-ID: Date: Sun, 21 Aug 2005 11:59:03 -0500 NNTP-Posting-Host: 24.6.103.195 X-Trace: sv3-zJ1PwXDUGyqiBac8h2YBV1zEI+RtfmPRZ+LR1nhOYRuCsVwUjY/Y+8oIMql5LwxiEtmCrwUtBLvKafm!ksgkswEmZFr1vJvtgTGq7UZIikHdm/JAbVbf89IvBoez5MfdWav5dLTrJBbIS8R1Bvtl0Ip2zd91 X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news1.google.com comp.lang.ada:4240 Date: 2005-08-21T11:59:03-05:00 List-Id: > type Stack_Index is range 1..whatever; > subtype Stack_Count is Stack_Index'Base range 0..whatever; Or type Stack_Count is range 0..whatever; subtype Stack_Index is Stack_Count range 1..Stack_Count'last; which only has a single instance of "whatever".