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,a982d4d7a7ff56a9 X-Google-Attributes: gid103376,public From: Dale Stanbrough Subject: Type qualification & entry calls - can they mix? Date: 1996/08/29 Message-ID: <503itr$aij@goanna.cs.rmit.edu.au>#1/1 X-Deja-AN: 177336176 distribution: world content-type: text/plain; charset=ISO-8859-1 x-xxmessage-id: organization: RMIT, Melbourne, Australia mime-version: 1.0 newsgroups: comp.lang.ada Date: 1996-08-29T00:00:00+00:00 List-Id: Consider the following... protected type fred is entry a; end fred; type list is array(1..10) of fred; prots :list; Then should the following be legal? list'(prots(1)).a; Dale