()
| 8 | // bootstrap procedure fails. |
| 9 | public class A { |
| 10 | public static Integer staticMeth() { |
| 11 | System.out.println("staticMeth() called."); |
| 12 | return new Integer(10); |
| 13 | } |
| 14 | |
| 15 | public void methI(Integer i) { |
| 16 | System.out.println("this.methI(" + i + ") called, this = " + this.hashCode()); |