fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. class Main {
  6. static class Outer {
  7. static class Inner {
  8. private int x = 0;
  9. }
  10.  
  11. public static void m() {
  12. Inner foo = new Inner();
  13. System.out.println(foo.x);
  14. }
  15. }
  16. public static void main (String[] args) throws java.lang.Exception {
  17. Outer.m();
  18. }
  19. }
Success #stdin #stdout 0.06s 4386816KB
stdin
Standard input is empty
stdout
0