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=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9fb18b5057796461 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-07-24 23:09:14 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!newsfeed.icl.net!newsfeed.fjserv.net!proxad.net!usenet-fr.net!enst.fr!not-for-mail From: christoph.grein@eurocopter.com Newsgroups: comp.lang.ada Subject: Re: Procedure Overloading Date: Fri, 25 Jul 2003 07:57:25 +0200 (MET DST) Organization: ENST, France Message-ID: Reply-To: grein@egypt.otn.eurocopter.de NNTP-Posting-Host: marvin.enst.fr Mime-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii X-Trace: avanie.enst.fr 1059113329 32669 137.194.161.2 (25 Jul 2003 06:08:49 GMT) X-Complaints-To: usenet@enst.fr NNTP-Posting-Date: Fri, 25 Jul 2003 06:08:49 +0000 (UTC) To: comp.lang.ada@ada.eu.org Return-Path: X-Authentication-Warning: mail.eurocopter.com: uucp set sender to using -f Content-MD5: tlzYzK/9aprfUGJn70hwjg== X-Mailer: dtmail 1.2.1 CDE Version 1.2.1 SunOS 5.6 sun4u sparc X-BeenThere: comp.lang.ada@ada.eu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: comp.lang.ada mail to news gateway List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Xref: archiver1.google.com comp.lang.ada:40791 Date: 2003-07-25T07:57:25+02:00 Why on earth have the creators of the Ada GLU binding chosen to shoot themselves into the foot? I do not see a way to resolve the overloading ambiguity (except of course changing the declarations :-(. There are other ways to produce unresolvable ambiguities, e.g. generic type T is private; package G is procedure P (X: T); procedure P (X: Boolean); end G; with G; package I is new G (Boolean); -- legal, but I.P is unresovably ambiguous.