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=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,60e2922351e0e780 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-11-03 23:30:00 PST Path: archiver1.google.com!news2.google.com!fu-berlin.de!uni-berlin.de!adsl-213-200-246-247.cybernet.CH!not-for-mail From: Vinzent 'Gadget' Hoefler Newsgroups: comp.lang.ada Subject: Re: Clause "with and use" Date: Tue, 04 Nov 2003 08:28:25 +0100 Organization: JeLlyFish software Message-ID: References: <3FA2CDCB.500F4AF0@fakeaddress.nil> <1tbcqv03boka8k4dirujrrfbepc2cbvscu@4ax.com> Reply-To: v.hoefler@acm.org NNTP-Posting-Host: adsl-213-200-246-247.cybernet.ch (213.200.246.247) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: news.uni-berlin.de 1067930998 43879435 213.200.246.247 (16 [175126]) X-Newsreader: Forte Agent 1.8/32.548 Xref: archiver1.google.com comp.lang.ada:2025 Date: 2003-11-04T08:28:25+01:00 List-Id: Dmitry A. Kazakov wrote: >use A.B.C.D; > >implies: > >with A.B.C.D; > >It was rejected. Does anybody remember why? I don't know if this was the reason, but AFAICS you can't "with" a package inbetween a body, but you can locally *use* a package in a declare block: |declare | use P; | ... So this sort of use would at least require a with-declaration in the beginning of the package. CMIIW, but all the "with"s in the beginning just declare package "dependencies", nothing more. Vinzent.