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,a575249b5f286bfe X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.125.233 with SMTP id mt9mr1934777pbb.5.1334740028643; Wed, 18 Apr 2012 02:07:08 -0700 (PDT) Path: r9ni69837pbh.0!nntp.google.com!news2.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: Julian Leyh Newsgroups: comp.lang.ada Subject: Re: Garbage Collection ??? Date: Wed, 18 Apr 2012 02:07:05 -0700 (PDT) Organization: http://groups.google.com Message-ID: <6997433.1158.1334740025722.JavaMail.geo-discussion-forums@ynmm10> References: <4f881910$0$2652$703f8584@news.kpn.nl> <5o86o2smbjpz.17l849bmku28v$.dlg@40tude.net> <4f888010$0$2641$703f8584@news.kpn.nl> <4f88ed79$0$2660$703f8584@news.kpn.nl> NNTP-Posting-Host: 194.156.172.86 Mime-Version: 1.0 X-Trace: posting.google.com 1334740026 17612 127.0.0.1 (18 Apr 2012 09:07:06 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 18 Apr 2012 09:07:06 +0000 (UTC) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=194.156.172.86; posting-account=4IMjSwoAAABghF4GBOy5ozdaZM8EkGwR User-Agent: G2/1.0 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-04-18T02:07:05-07:00 List-Id: Am Samstag, 14. April 2012 20:21:17 UTC+2 schrieb Robert A Duff: > In Ada 2012, you can say: > > type T_Ptr_Opt is access all T; > subtype T_Ptr is T_Ptr_Opt with > Dynamic_Predicate => T_Ptr /= null; In Ada 2005, you can already say: type T_Ptr_Opt is access all T; subtype T_Ptr is not null T_Ptr_Opt;