blob: 340371298af1ff66d06654fd9d288f78ca33dc08 [file] [log] [blame]
//file
class Test {
void putInt(int i) {}
void test() {
Byte b = 10;
putInt(b);
}
}