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 Path: eternal-september.org!reader02.eternal-september.org!news.uzoreto.com!border1.nntp.ams1.giganews.com!nntp.giganews.com!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!fx09.ams1.POSTED!not-for-mail Subject: Re: Compiler stuck on Big_Integer array initialisation Newsgroups: comp.lang.ada References: <12e10ca5-d23c-40b3-80ea-37367072310cn@googlegroups.com> From: Per Sandberg User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.0 MIME-Version: 1.0 In-Reply-To: <12e10ca5-d23c-40b3-80ea-37367072310cn@googlegroups.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Message-ID: X-Complaints-To: abuse@usenet.se NNTP-Posting-Date: Sun, 14 Mar 2021 05:56:51 UTC Organization: usenet.se Date: Sun, 14 Mar 2021 06:56:51 +0100 X-Received-Bytes: 1075 X-Original-Bytes: 1023 Xref: reader02.eternal-september.org comp.lang.ada:61517 List-Id: procedure Not_Stuck is A : array (0 .. 9) of Big_Integer := (others => To_Big_Integer(0)); begin null; end Not_Stuck; On 14/03/2021 02:32, Jesper Quorning wrote: > procedure Stuck is > A : array (0 .. 9) of Big_Integer := (others => 0); -- Stuck > begin > null; > end Stuck;