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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,174ca8cf9b3c1596 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit From: Brian May Newsgroups: comp.lang.ada Subject: Re: Help: program won't ends (GNAT) References: <45b3f4a4$0$30117$426a74cc@news.free.fr> Date: Mon, 22 Jan 2007 20:51:51 +1100 Message-ID: User-Agent: Gnus/5.110006 (No Gnus v0.6) XEmacs/21.4.19 (linux) Cancel-Lock: sha1:59qhLVOjEmLWiYG7yqZgX9tgtko= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii NNTP-Posting-Host: snoopy.microcomaustralia.com.au X-Trace: quokka.wn.com.au 1169459490 202.173.153.89 (22 Jan 2007 18:51:30 +0800) X-Complaints-To: abuse@westnet.com.au Path: g2news2.google.com!news3.google.com!news.glorb.com!quokka.wn.com.au!not-for-mail Xref: g2news2.google.com comp.lang.ada:8397 Date: 2007-01-22T20:51:51+11:00 List-Id: >>>>> "Yves" == Yves Bailly writes: Yves> type Rec is record f: A_2 := (others => (others => Yves> Null_Unbounded_String)); end record; If I replace this with: type Rec is record f: A_2 := (1 => (others => Null_Unbounded_String)); end record; Then it works with gcc-4.1 So, at quick glance, it looks like a bug with the "others" keyword to me. Changing the 2nd others had no effect. -- Brian May