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,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,691bbbf0ab0cc67e X-Google-Attributes: gid103376,public From: bobduff@world.std.com (Robert A Duff) Subject: Re: [Q] Returning Strings From A Function Date: 1997/04/07 Message-ID: #1/1 X-Deja-AN: 231293404 References: <33454165.1658515@news.demon.co.uk> <33478738.2129057@news.demon.co.uk> <01bc42af$e32e3ea0$90f482c1@xhv46.dial.pipex.com> Organization: The World Public Access UNIX, Brookline, MA Newsgroups: comp.lang.ada Date: 1997-04-07T00:00:00+00:00 List-Id: In article <01bc42af$e32e3ea0$90f482c1@xhv46.dial.pipex.com>, Nick Roberts wrote: > FS: Filename_String := ""; -- unconstrained type, so must be initialised FS is forever constrained to length zero. > FS := Text_IO.Name(F); -- constraint error raised if longer than 12 No, this will raise C_E, unless the name is of length zero. Ada's built-in arrays cannot change size. - Bob