1*f1fbf3c2SXin Li package testproxy.sub; 2*f1fbf3c2SXin Li 3*f1fbf3c2SXin Li @SuppressWarnings("unused") 4*f1fbf3c2SXin Li public class TargetSuper { poi()5*f1fbf3c2SXin Li private int poi() { return 1; } poi2()6*f1fbf3c2SXin Li int poi2() { return 2; } poi3()7*f1fbf3c2SXin Li public int poi3() { return 3; } 8*f1fbf3c2SXin Li } 9