blob: d97e9ddc4b80f43baffbe8c7235efb81edaf9904 [file] [log] [blame]
//file
package demo;
class Test {
void putInt(Integer i) {}
void test() {
byte b = 10;
putInt(b);
Byte b2 = 10;
putInt(b2);
}
}