• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test2;
2 
3 @SuppressWarnings("unused")
4 public class Nested3 {
5     private int i = 0;
geti()6     private int geti() { return i; }
7 
Nested3(int j)8     Nested3(int j) { i = 1; }
9 
Nested3()10     private Nested3() { i = 2; }
11 
Nested3(String s)12     private Nested3(String s) { i = 3; }
13 
14     public static class Inner {
g()15         public int g() { return 1; }
16     }
17 }
18