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 X-Google-Thread: 103376,2107bed9c7be998f X-Google-Attributes: gid103376,public Path: controlnews3.google.com!postnews1.google.com!not-for-mail From: jimmaureenrogers@worldnet.att.net (Jim Rogers) Newsgroups: comp.lang.ada Subject: Re: Why can't I override these functions? Date: 7 May 2004 10:15:00 -0700 Organization: http://groups.google.com Message-ID: <82347202.0405070915.64b3ed62@posting.google.com> References: NNTP-Posting-Host: 209.194.156.4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1083950100 20707 127.0.0.1 (7 May 2004 17:15:00 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 7 May 2004 17:15:00 +0000 (UTC) Xref: controlnews3.google.com comp.lang.ada:372 Date: 2004-05-07T10:15:00-07:00 List-Id: Bj�rn Persson wrote in message news:... > I have a generic package with a tagged type Parameter Definition, a > generic subpackage with a type Intermediate Definition derived from > Parameter Definition, and a generic child package with a type > Typed Parameter Definition derived from Intermediate Definition. See the > > code below. Gnat gives me an error on the declaration of > Typed Parameter Definition: > Ada identifiers cannot contain blanks. For instance "Parameter Definition" cannot be an identifier. Try inserting underscore characters where you currently have spaces, such as "Parameter_Definition". Jim Rogers