Advertisement
Zacharee1

Untitled

Oct 22nd, 2018
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. Create a file: SomeClass.java:
  2.  
  3. public static class SomeClass {} //this won't compile
  4.  
  5. _____________________________
  6.  
  7.  
  8. Create a file: SomeOtherClass.java
  9.  
  10. public class SomeOtherClass {
  11.     public SomeOtherClass() {
  12.         SomeChildClass child = new SomeChildClass(); //this will
  13.     }
  14.     public static class SomeChildClass() {}
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement