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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,98e3ee7e73b9dd89,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!g49g2000cwa.googlegroups.com!not-for-mail From: nblanpain@hotmail.com Newsgroups: comp.lang.ada Subject: Aliased Date: 15 Jun 2005 09:06:41 -0700 Organization: http://groups.google.com Message-ID: <1118851601.345326.86640@g49g2000cwa.googlegroups.com> NNTP-Posting-Host: 62.212.119.91 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1118851606 31119 127.0.0.1 (15 Jun 2005 16:06:46 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 15 Jun 2005 16:06:46 +0000 (UTC) User-Agent: G2/0.2 Complaints-To: groups-abuse@google.com Injection-Info: g49g2000cwa.googlegroups.com; posting-host=62.212.119.91; posting-account=_RMqsA0AAAC-PdbSlgs9JBFgDjKtbmJX Xref: g2news1.google.com comp.lang.ada:11383 Date: 2005-06-15T09:06:41-07:00 List-Id: Hello, I have a probleme with aliased variable : -- Specification package Test is ... private type T_Toto is ...; type A_Toto is acess all T_Toto; type T_Test is new T_Object with record Tab : aliased T_Toto; Ptr_Tab : A_Toto; end record; end Test; -- Body package body Test is ... procedure Initialize is begin Ptr_Tab := Tab'Access; -- illegal instruction end Initialize; ... end Test; Where is the problem and is there a solution to it? Thanks,