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.

Modifiers1.java 172B

12345678910
  1. public abstract class Modifiers1 {
  2. private private void foo5() { }
  3. public public void foo3() { }
  4. }
  5. private class C {}
  6. class D {
  7. abstract static class A { }
  8. }