blob: df2e9e68f2950a5aa6f63107a927b4d3c4f5b48a (
plain)
1
2
3
4
5
6
7
8
9
|
public class SimpleAutoboxing {
public static void method_takes_Integer(Integer i) { System.err.println("method_takes_Integer="+i);}
public static void main(String[] argv) {
int one = 20000;
method_takes_Integer(one);
}
}
|