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=-0.5 required=3.0 tests=BAYES_05 autolearn=ham autolearn_force=no version=3.4.5-pre1 Date: 12 Aug 93 12:14:41 GMT From: cis.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!howland. reston.ans.net!darwin.sura.net!news-feed-2.peachnet.edu!news-feed-1.peachnet.ed u!umn.edu!email.sp.paramax.com! (Wayne E. Donaho) Subject: Re: Unconstrained arrays Message-ID: <24dc7h$kdc@hobbes.sp.paramax.com> List-Id: Kenneth Anderson (kanderso@mabillon.ICS.UCI.EDU) wrote: : Viewers : str_array(1 .. 1) := (Create("text_artist")); The problem is that the "("...")" can either be an expression (like (1+2)) or a slice. The compiler cannot figure out which use of the parens to use. To give the compiler some help use the following: Viewers : str_array(1 .. 1) := (1=>Create("text_artist")); It will then determine that you have a one element slice, not an expression of type DynamicString. Wayne Donaho.