From: Finn B. <bc...@us...> - 2001-07-23 15:20:10
|
Update of /cvsroot/jython/bugtests In directory usw-pr-cvs1:/tmp/cvs-serv10621 Added Files: test303.py test303j.java Log Message: [ #440660 ] using nested java cls @ level >2 fails --- NEW FILE --- """ Test deeply nested classes [ #440660 ] using nested java cls @ level >2 fails """ import support support.compileJava("test303j.java") import test303j.A try: import test303j.A.B except ImportError: raise support.TestWarning('It should be possible to import test303j.A.B') --- NEW FILE --- public class test303j { public static class A { public static class B { public static class C { } } } } |