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,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,cca7136d56d62da4,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-01-20 20:23:37 PST From: "Ratson Janiv" Newsgroups: comp.lang.ada Subject: Help Ada basics Date: Tue, 20 Jan 2004 18:24:22 +0200 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 NNTP-Posting-Host: 82-166-174-136.barak.net.il X-Original-NNTP-Posting-Host: 82-166-174-136.barak.net.il Message-ID: <400d56c7$1@news.barak.net.il> X-Trace: news.barak.net.il 1074616007 82-166-174-136.barak.net.il (20 Jan 2004 18:26:47 +0200) X-Original-Trace: 20 Jan 2004 18:26:47 +0200, 82-166-174-136.barak.net.il Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!news-out.visi.com!petbe.visi.com!ash.uu.net!news.splitrock.net!nntp02.mcleodusa.net!dimaggio.newszilla.com!sinatra.newszilla.com!news.barak.net.il!not-for-mail Xref: archiver1.google.com comp.lang.ada:4588 Date: 2004-01-20T18:24:22+02:00 List-Id: I have the following not compiling code: ============================================ generic type Language is array (Positive range<>) of Character; type States is array (Positive range <>) of Integer; package Automat_Producer is ... =========================================================== And also : ************************************************************* with Automat_Producer; generic with package My_Automat is new Automat_Producer (<>); procedure Apply_String(Auto: in My_Automat; S:String); ******************************************************************* What M I doing wrong ? Compiler error: apply_string.ads:6:33: subtype mark required in this context apply_string.ads:6:33: found "My_Automat" declared at line 4 10x, J.