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.8 required=5.0 tests=BAYES_00,INVALID_DATE autolearn=no autolearn_force=no version=3.4.4 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!tut.cis.ohio-state.edu!ucbvax!ANTARES.MCS.ANL.GOV!dritz From: dritz@ANTARES.MCS.ANL.GOV Newsgroups: comp.lang.ada Subject: Re: Enumeration_IO Message-ID: <9005081754.AA24406@papasun.mcs.anl.gov> Date: 8 May 90 17:54:09 GMT Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet List-Id: Having seen Michael Feldman's test program for Enumeration_IO, I think I can say what the problem is. The type Type_Set and its enumeration literals Lower_Case and Upper_Case are declared in Text_IO, not in Text_IO.Enumeration_IO. The test program only "with"ed Text_IO; it did not "use" it. Hence the enumeration literal Lower_Case is not directly visible. I would expect that adding "use Text_IO;" or replacing "Lower_Case" by "Text_IO.Lower_Case" would solve the problem. Ken Dritz dritz@mcs.anl.gov