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: a07f3367d7,657568723e59e45b X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.224.186.20 with SMTP id cq20mr5688501qab.8.1350902467988; Mon, 22 Oct 2012 03:41:07 -0700 (PDT) Received: by 10.52.97.101 with SMTP id dz5mr1184367vdb.2.1350902467924; Mon, 22 Oct 2012 03:41:07 -0700 (PDT) Path: r17ni43198318qap.0!nntp.google.com!x14no4113262qar.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 22 Oct 2012 03:41:07 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=91.7.48.234; posting-account=rmHyLAoAAADSQmMWJF0a_815Fdd96RDf NNTP-Posting-Host: 91.7.48.234 References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: Basic issue with dotted notation and tagged types From: AdaMagica Injection-Date: Mon, 22 Oct 2012 10:41:07 +0000 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-10-22T03:41:07-07:00 List-Id: There is a similar problem: type T is record I: Integer; end record; function F return T is I: Integer := -1; -- * begin return F.I; -- recursive call to F and select component I; -- or I declared inside F at * end F; Without looking in the RM, I guess it's the latter.