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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c80d4e18b9b4ba0 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-01-20 22:24:47 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!bloom-beacon.mit.edu!nycmny1-snh1.gtei.net!news.gtei.net!newsfeed.mathworks.com!wn13feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!sccrnsc01.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: compiler hangs on circular type dependency References: X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@attbi.com X-Trace: sccrnsc01 1043130286 12.234.13.56 (Tue, 21 Jan 2003 06:24:46 GMT) NNTP-Posting-Date: Tue, 21 Jan 2003 06:24:46 GMT Organization: AT&T Broadband Date: Tue, 21 Jan 2003 06:24:46 GMT Xref: archiver1.google.com comp.lang.ada:33278 Date: 2003-01-21T06:24:46+00:00 List-Id: > > type B is new A with private; > > private > > type B is new C with null record; >... > A type shall be completely defined (see 3.11.1) prior to being specified >... > Your private definitions violate this rule. The private definition of B also contradicts the public one.