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 autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:ae9:f209:: with SMTP id m9mr64214407qkg.251.1564218544477; Sat, 27 Jul 2019 02:09:04 -0700 (PDT) X-Received: by 2002:a05:6830:1697:: with SMTP id k23mr44587600otr.16.1564218544238; Sat, 27 Jul 2019 02:09:04 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!b26no7081946qtq.0!news-out.google.com!a5ni97qtd.0!nntp.google.com!b26no7081941qtq.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sat, 27 Jul 2019 02:09:03 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=213.31.227.170; posting-account=_-1HTgoAAADHBS5P7Uw6znR8Rsn20H8O NNTP-Posting-Host: 213.31.227.170 References: <64bf79fa-b330-416f-9deb-de3f0830d994@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: ambiguous expression (cannot resolve "Put") From: cryintothebluesky@gmail.com Injection-Date: Sat, 27 Jul 2019 09:09:04 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader01.eternal-september.org comp.lang.ada:56973 Date: 2019-07-27T02:09:03-07:00 List-Id: OK thanks for the explanation, this makes sense now. So universal integer i= s not a distinct type and can be converted to any integer type by the compi= ler, depending on the context. So Integer'(Integer'Size) explicitly convert= s it to Integer and a matching Put() function is found.