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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,17182d99840be79c,start X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!j78g2000hsd.googlegroups.com!not-for-mail From: Javi Newsgroups: comp.lang.ada Subject: access assignation. Aliasing problems? Date: Fri, 1 Feb 2008 02:01:08 -0800 (PST) Organization: http://groups.google.com Message-ID: <6766a791-abf3-4571-b5f7-98751a948f13@j78g2000hsd.googlegroups.com> NNTP-Posting-Host: 213.229.146.17 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1201860069 22710 127.0.0.1 (1 Feb 2008 10:01:09 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 1 Feb 2008 10:01:09 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: j78g2000hsd.googlegroups.com; posting-host=213.229.146.17; posting-account=k8j1NwoAAABh1tdgXNQ0vrLWXUAxypwQ User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11,gzip(gfe),gzip(gfe) X-HTTP-Via: 1.1 garbi.gtd.es:3128 (Squid/2.4.STABLE6) Xref: g2news1.google.com comp.lang.ada:19675 Date: 2008-02-01T02:01:08-08:00 List-Id: Hi again, I have some problem between access assignations. "List" has in its definition a private access to ListNode (First, Last). Why can't I do the assignation: L.List := L.Last ? it does produce an "accessibilty error check". If both values are null, I can not either do the assignation. ----------- ... procedure putItem (L : in out List; It : in ItemList) is begin if L.Last = null then L.Last := new ListNode'(Item => It, next => null); print(L.Last.Item); --DBG this prints OK, the Item was properly assigned L.First := L.Last; -- this fails, L.First and L.Last are both the same type access ListNode ... ---------- I'm very sorry because of bothering you with this simple questions, thanks again.