//file package demo; class Test { void putInt(Integer i) {} void test() { int i = 10; putInt(i); } }