1 package test2; 2 3 class PrivateMethod2 { f()4 private int f() { return 0; } 5 g()6 int g() { return f(); } 7 } 8 9 public class PrivateMethod { 10 public int i; 11 } 12