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,5dacec64c8c879fa X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Received: by 10.68.238.198 with SMTP id vm6mr11129205pbc.3.1328532859095; Mon, 06 Feb 2012 04:54:19 -0800 (PST) Path: lh20ni266820pbb.0!nntp.google.com!news2.google.com!postnews.google.com!z31g2000vbt.googlegroups.com!not-for-mail From: Julian Leyh Newsgroups: comp.lang.ada Subject: Re: Preventing Unchecked_Deallocation? Date: Mon, 6 Feb 2012 04:52:15 -0800 (PST) Organization: http://groups.google.com Message-ID: References: <33a35da4-6c3e-4ab4-b58f-a9d73565d79a@t30g2000vbx.googlegroups.com> NNTP-Posting-Host: 194.156.172.86 Mime-Version: 1.0 X-Trace: posting.google.com 1328532858 16248 127.0.0.1 (6 Feb 2012 12:54:18 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 6 Feb 2012 12:54:18 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: z31g2000vbt.googlegroups.com; posting-host=194.156.172.86; posting-account=4IMjSwoAAABghF4GBOy5ozdaZM8EkGwR User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-Header-Order: HACRNKUSEL X-HTTP-UserAgent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7,gzip(gfe) Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Date: 2012-02-06T04:52:15-08:00 List-Id: On 5 Feb., 17:42, Simon Belmont wrote: > package ud is > =A0 function Get return not null access Integer; > end ud; > > package body ud is > =A0 type Int_Ptr is access all Integer; > =A0 o : Int_Ptr :=3D new Integer'(42); use o : constant Int_Ptr :=3D ....