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,db89bfa77eeb251c X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!y43g2000cwc.googlegroups.com!not-for-mail From: "Marc Enzmann" Newsgroups: comp.lang.ada Subject: Re: Dot notation in Ada 2005 Date: 22 May 2006 01:19:42 -0700 Organization: http://groups.google.com Message-ID: <1148285982.023797.195260@y43g2000cwc.googlegroups.com> References: <1148127385.390797.169690@y43g2000cwc.googlegroups.com> NNTP-Posting-Host: 62.80.28.42 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1148285987 1461 127.0.0.1 (22 May 2006 08:19:47 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 22 May 2006 08:19:47 +0000 (UTC) In-Reply-To: User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.0.3) Gecko/20060426 Firefox/1.5.0.3,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: y43g2000cwc.googlegroups.com; posting-host=62.80.28.42; posting-account=9vOmpw0AAABK7dSRai9CaeZnkTP9G63N Xref: g2news2.google.com comp.lang.ada:4328 Date: 2006-05-22T01:19:42-07:00 List-Id: Hm, somewhat familiar. Something like type My_Private_Class is private; ... procedure Do_Something (Argument : in out My_Private_Class); ... private type My_Private_Class is tagged record ... end record; ... can be called by ... An_Argument : My_Private_Class; ... Do_Something (An_Argument); ... but not by ... An_Argument.Do_Something; However, if My_Private_Class is not declared as private, then anything goes.... What am I missing ??? (BTW: using gcc version 3.4.5 20050524 (prerelease) for GNAT GPL 2005 under Mac OS 10.4)