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, T_HK_NAME_FM_MR_MRS autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 16adf3,41810a0fecb9b060 X-Google-Attributes: gid16adf3,public X-Google-Thread: 103376,9def90e15d8accc X-Google-Attributes: gid103376,public X-Google-Thread: 12f38b,41810a0fecb9b060 X-Google-Attributes: gid12f38b,public X-Google-ArrivalTime: 2003-12-13 07:13:06 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: ratsonjaniv@hotmail.com (Mr. J.) Newsgroups: comp.lang.ada,news.admin.lang.ada,news.groups.lang.ada Subject: Re: coding problems, please help. Date: 13 Dec 2003 07:13:05 -0800 Organization: http://groups.google.com Message-ID: References: <3fd4e0e2$1@news.barak.net.il> <3fd4ee3b$1@news.barak.net.il> NNTP-Posting-Host: 82.166.165.88 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1071328386 6949 127.0.0.1 (13 Dec 2003 15:13:06 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Sat, 13 Dec 2003 15:13:06 +0000 (UTC) Xref: archiver1.google.com comp.lang.ada:3441 Date: 2003-12-13T07:13:05-08:00 List-Id: Dmitry A. Kazakov wrote in message news:... > On Mon, 8 Dec 2003 23:31:32 +0200, "Ratson Janiv" > wrote: > > >I found something ... > >Still having a problem ... > >procedure Q2 is > > > > package My_Base_Queue is new Jr.Queue(T=>Integer); > > > > package My_Queue_Max is new My_Base_Queue(">"=>">"); > > You are trying to instantiate a non-generic package (My_Base_Queue). I guess so, but Jr.Queue is a generic package, so how do I define the My_Best_Queue as a generic package ? 10x, J.