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.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,f8ae7c8799572552 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!z14g2000cwz.googlegroups.com!not-for-mail From: "mferracini" Newsgroups: comp.lang.ada Subject: Re: test with task Date: 23 Nov 2004 08:36:19 -0800 Organization: http://groups.google.com Message-ID: <1101227779.793647.47900@z14g2000cwz.googlegroups.com> References: <211db0ae.0411230312.48f36e70@posting.google.com> NNTP-Posting-Host: 213.215.153.30 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1101227783 31840 127.0.0.1 (23 Nov 2004 16:36:23 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 23 Nov 2004 16:36:23 +0000 (UTC) In-Reply-To: <211db0ae.0411230312.48f36e70@posting.google.com> User-Agent: G2/0.2 Complaints-To: groups-abuse@google.com Injection-Info: z14g2000cwz.googlegroups.com; posting-host=213.215.153.30; posting-account=OjhBzA0AAAC7IWpsLrvIpzjmXdzmh93y Xref: g2news1.google.com comp.lang.ada:6380 Date: 2004-11-23T08:36:19-08:00 List-Id: new problem :) (i try a solution of my problem but dont' work...) package Foo is package Bar is procedure nulla; end Bar; end Foo; package body Foo is package body Bar is type Dummy is new Integer; procedure Nulla is X : Dummy; begin X:=1; end Nulla; end Bar; type N_array is array (1..10) of dummy; begin null; end Foo; -------------------------------- how make dummy visible? and if dummy is a task type? thanks