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,72a0bc6240d264e3 X-Google-Attributes: gid103376,public From: tmoran@bix.com Subject: Re: Access and alias Date: 2000/04/04 Message-ID: #1/1 X-Deja-AN: 606694226 References: X-Complaints-To: abuse@pacbell.net X-Trace: news.pacbell.net 954875218 207.214.211.211 (Tue, 04 Apr 2000 12:06:58 PDT) Organization: SBC Internet Services NNTP-Posting-Date: Tue, 04 Apr 2000 12:06:58 PDT Newsgroups: comp.lang.ada Date: 2000-04-04T00:00:00+00:00 List-Id: > DCB_Access:LPDCB := DCB'Access; This says you want the variable DCB_Access to point to DCB, which is a *type*. You probably meant it to point to an *object* of type DCB, in particular, the object DCB_1, so you need to say: DCB_Access:LPDCB := DCB_1'Access; Also, in order to have anything point at DCB_1, you are required to announce in public that there may be ways to modify object DBC_1 other than via the name "DCB_1", ie, DCB_1 may have aliases. Say DCB_1: aliased DCB; and then the compiler will let you make pointers to DCB_1.