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.3 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6ff9a187ce31425c,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-10-18 13:43:04 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.icl.net!newsfeed.fjserv.net!proxad.net!fr.usenet-edu.net!usenet-edu.net!enst.fr!not-for-mail From: "Dominic D'Apice" Newsgroups: comp.lang.ada Subject: Completion error Date: Fri, 18 Oct 2002 16:42:19 -0400 Organization: ENST, France Sender: comp.lang.ada-admin@ada.eu.org Message-ID: Reply-To: comp.lang.ada@ada.eu.org NNTP-Posting-Host: marvin.enst.fr Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: avanie.enst.fr 1034973783 26131 137.194.161.2 (18 Oct 2002 20:43:03 GMT) X-Complaints-To: usenet@enst.fr NNTP-Posting-Date: Fri, 18 Oct 2002 20:43:03 +0000 (UTC) Return-Path: X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.3416 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org X-Mailman-Version: 2.0.13 Precedence: bulk List-Unsubscribe: , List-Id: comp.lang.ada mail<->news gateway List-Post: List-Help: List-Subscribe: , Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org Xref: archiver1.google.com comp.lang.ada:29919 Date: 2002-10-18T16:42:19-04:00 Hi , what means this : services.ads: Error: line 7 col 6 LRM:3.10.1(3), Completion required for incomplete type 'reservation', Continuing I declare this : ADS : ------------------------------------------- type reservation; type louer is access reservation; ADB : ------------------------------------------- type reservation is record num : natural := 0; plancher : integer := 20; plafond : integer := 20; classe : auto := econo; nomclient : string(1..256); end record; type tete_liste_louer is record premier : louer := null; dernier : louer := null; longueur : natural := 0; end record; thanks