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=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,44aecd08962a2500,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-05 22:26:20 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!proxad.net!usenet-fr.net!enst.fr!not-for-mail From: christoph.grein@eurocopter.com Newsgroups: comp.lang.ada Subject: Re: Visibility Date: Fri, 6 Jun 2003 07:15:19 +0200 (MET DST) Organization: ENST, France Message-ID: Reply-To: grein@egypt.otn.eurocopter.de NNTP-Posting-Host: marvin.enst.fr Mime-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii X-Trace: avanie.enst.fr 1054877179 17168 137.194.161.2 (6 Jun 2003 05:26:19 GMT) X-Complaints-To: usenet@enst.fr NNTP-Posting-Date: Fri, 6 Jun 2003 05:26:19 +0000 (UTC) To: comp.lang.ada@ada.eu.org Return-Path: X-Authentication-Warning: mail.eurocopter.com: uucp set sender to using -f Content-MD5: j2wf1vf8k4NamNKupmtO7g== X-Mailer: dtmail 1.2.1 CDE Version 1.2.1 SunOS 5.6 sun4u sparc X-BeenThere: comp.lang.ada@ada.eu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: comp.lang.ada mail to news gateway List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Xref: archiver1.google.com comp.lang.ada:38748 Date: 2003-06-06T07:15:19+02:00 > package datatypes is > subtype widget is integer; > end datatypes; > > with datatypes; > package testvisibility is > function widget (a: integer) return datatypes.widget; > end testvisibility; Did no one realize that this is an Ada83 restriction? In Ada95, this code is correct. RM83 8.3(16) vs. RM95 8.3(14..23)