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,8d1c732147dd383f,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-24 09:22:52 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!news.algonet.se!algonet!newsfeed1.bredband.com!bredband!newsfeed.bahnhof.se!news-stob.telia.net!news-sto.telia.net!masternews.telia.net.!newsc.telia.net.POSTED!not-for-mail From: "Andreas Lans" Newsgroups: comp.lang.ada Subject: Problems with assignment X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: Date: Fri, 24 May 2002 16:22:48 GMT NNTP-Posting-Host: 194.237.160.178 X-Complaints-To: abuse@telia.com X-Trace: newsc.telia.net 1022257368 194.237.160.178 (Fri, 24 May 2002 18:22:48 CEST) NNTP-Posting-Date: Fri, 24 May 2002 18:22:48 CEST Organization: Telia Internet Xref: archiver1.google.com comp.lang.ada:24656 Date: 2002-05-24T16:22:48+00:00 List-Id: So, the prior problem is solved, but now a new one has come up. Im trying to get the Get_Random_Female procedure to return a female to be stored in the temp variable. In short it looks like this.When I try to compile this it says: Left hand of assignment must not be limited type. Its about the declaration temp:=Island.Get_Random_Female.Whats the problem?? temp : Female; temp := Island.Get_Random_Female; entry Get_Random_Female(Female : out Server_P) when Pairs <= 100 is begin Female := Females(pairs); return; end Get_Random_Female; When I try this I get the following errors: Left hand of assignment must not be limited type Accept statement cannot return value