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,69fac0ed98e83dcd,start X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!c36g2000prc.googlegroups.com!not-for-mail From: Maxim Reznik Newsgroups: comp.lang.ada Subject: Language lawyer question: Limited Views Date: Wed, 31 Dec 2008 09:59:00 -0800 (PST) Organization: http://groups.google.com Message-ID: NNTP-Posting-Host: 213.154.201.133 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1230746340 29500 127.0.0.1 (31 Dec 2008 17:59:00 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 31 Dec 2008 17:59:00 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: c36g2000prc.googlegroups.com; posting-host=213.154.201.133; posting-account=K1cP1QoAAAD_GR6kW2Td0NqGqGBLRE8h User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; ru-RU; rv:1.8.1.1) Gecko/20061208 Firefox/2.0.0.1,gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:4126 Date: 2008-12-31T09:59:00-08:00 List-Id: Consider package Pkg is type T; type T is null record; end Pkg; According to 10.1.1(12.3/2) "The limited view of a package contains: ... For each type_declaration in the visible part, an incomplete view of the type..." limited view for it would be: package limited view Pkg is type T; -- for declaration type T; type T; -- for declaration type T is null record; end Pkg; Why two implicit declaration of T are allowed here? Is second "type T;" completion for first? PS Happy New Year! -- Maxim Reznik