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,e1c47fd1b76b1c05 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!news2.google.com!proxad.net!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed.multikabel.nl!skynet.be!skynet.be!newspost001!tjb!not-for-mail Date: Wed, 06 Apr 2005 12:54:12 +0200 From: Adrien Plisson User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax) X-Accept-Language: fr-fr, fr-be, fr, en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Task entries and access to subprograms. References: <4253B917.5070800@mailinator.com> In-Reply-To: <4253B917.5070800@mailinator.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: <4253bfd4$0$30162$ba620e4c@news.skynet.be> Organization: -= Belgacom Usenet Service =- NNTP-Posting-Host: 4eab22c3.news.skynet.be X-Trace: 1112784852 news.skynet.be 30162 81.243.85.21:4901 X-Complaints-To: usenet-abuse@skynet.be Xref: g2news1.google.com comp.lang.ada:10295 Date: 2005-04-06T12:54:12+02:00 List-Id: Alex R. Mosteo wrote: [...] > type AInt is access all Integer; > type Code is access procedure; [...] > entry Two (I : AInt); -- No complaint. Legal? [...] > entry Four (C : Code); -- No complaint. [...] > > I'm interested in your oppinion about the second and fourth entries > above, and in other alternatives to the tagged type workaround. entry Two and Four are passed "in" parameters of type "access something" (which is NOT an anonymous access type). so it seems legal. -- rien