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 Lines: 10 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