From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.5-pre1 Date: 11 Aug 93 23:42:57 GMT From: ucivax!gateway@ucbvax.Berkeley.EDU (Kenneth Anderson) Subject: Re: Unconstrained arrays Message-ID: <9308111642.aa06180@Paris.ics.uci.edu> List-Id: In comp.lang.ada you write: >In article <9308111528.aa04642@Paris.ics.uci.edu>, kanderso@mabillon.ICS.UCI.E DU (Kenneth Anderson) writes... >> >> Viewers : str_array(1 .. 1) := (Create("text_artist")); >> >>--### A:error: RM 8.3: no visible identifier is of type str_array >> > What about: > Viewers : srt_array(1) := (Create("text_artist")); > (just a hunch) Thanks for the reply. The compiler didn't like this either, it said... Viewers : str_array(1) := (Create("text_artist")); -----------------------^A ## # ------------------------------^B ## # --### A:error: RM (many references): range expected --### B:error: RM 8.3: no visible identifier is of type str_array So I know (now) that I need a range for sure... Thanks again, Ken