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.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,4afbb7dfe38c3e06,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-12-16 07:30:01 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!newsfeeds.belnet.be!news.belnet.be!news-ge.switch.ch!newsfeed.sunrise.ch!news.sunrise.ch!not-for-mail From: "Pierrick" Newsgroups: comp.lang.ada Subject: help please Date: Sun, 16 Dec 2001 16:27:48 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Message-ID: <3c1cbdb9$0$756$7402020d@newsfeed.sunrise.ch> NNTP-Posting-Host: 194.230.160.206 X-Trace: 1008516538 newsfeed.sunrise.ch 756 194.230.160.206 Xref: archiver1.google.com comp.lang.ada:17968 Date: 2001-12-16T16:27:48+01:00 List-Id: --I've declared this type : type T_Tableau is array (integer range <>); ... --and this procedure : function Plus_Petit (Table : T_Tableau) return Integer is ... --And after that, I create a table : Table : T_Tableau (1..5); ... begin ... --When i try to call my procedure with these parameters, it doesn't work (but no problem at compilation) : Plus_Petit (Table (3..5)); Could you please tell my why ? Sorry for my bad english :) Pierrick