You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ExtendInnerCE.java 266B

12345678
  1. /** @testcase TestCase PUREJAVA NullPointerException (not compiler error) when extending non-static inner class */
  2. public class ExtendInnerCE { }
  3. class TargetClass Outer.Inner { } // s.b. error: Outer.this. is not accessible
  4. class Outer {
  5. class Inner {
  6. }
  7. }