1 package test2; 2 3 public class LocalVar { 4 public String toString() { return "123"; } 5 public int foo() { return toString().length(); } 6 } 7