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,d80cdc1b3ff5b2f9 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-11 15:41:25 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!newsfeed.direct.ca!look.ca!newshub2.rdc1.sfba.home.com!news.home.com!news1.rdc1.sfba.home.com.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Simple Question 3 References: <9q49v5$6dj$1@trog.dera.gov.uk> X-Newsreader: Tom's custom newsreader Message-ID: Date: Thu, 11 Oct 2001 22:41:25 GMT NNTP-Posting-Host: 24.7.82.199 X-Complaints-To: abuse@home.net X-Trace: news1.rdc1.sfba.home.com 1002840085 24.7.82.199 (Thu, 11 Oct 2001 15:41:25 PDT) NNTP-Posting-Date: Thu, 11 Oct 2001 15:41:25 PDT Organization: Excite@Home - The Leader in Broadband http://home.com/faster Xref: archiver1.google.com comp.lang.ada:14342 Date: 2001-10-11T22:41:25+00:00 List-Id: > function Unit return MyRcd; > > type MyNewRcd is new MyRcd with > record > c: Integer; > end record; >... >It wants me to define a version of Unit() for each derived type?! Why? X : MyNewRcd; begin X := Unit; question: what is the value of X.c?