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,9ae5f4553aae9277,start X-Google-Attributes: gid103376,public From: John Gluth Subject: What's wrong with this syntax? Date: 1996/12/04 Message-ID: <584kr9$84s@hacgate2.hac.com>#1/1 X-Deja-AN: 202361052 distribution: world content-type: text/plain; charset=ISO-8859-1 x-xxmessage-id: organization: HMSC mime-version: 1.0 newsgroups: comp.lang.ada Date: 1996-12-04T00:00:00+00:00 List-Id: Howdy, Someone on my team asked me if I knew why Rational's Apex doesn't seem to like the following excerpts. I don't see what's wrong with it either. Some_Limit : Constant := 1024; for i in 1..(Some_Limit - 2) loop It doesn't seem to want to evaluate the (Some_Limit - 2) expression. It seems to me that Some_Limit, a named number is of type Universal Integer. The literal, 2, should also be of type Universal Integer. What are we missing? Thx, John jpgluth@ccgate.hac.com