30a7c67aaa
#KT-851 Fixed
9 lines
112 B
Java
9 lines
112 B
Java
//file
|
|
class Test {
|
|
void putInt(int i) {}
|
|
|
|
void test() {
|
|
Byte b = 10;
|
|
putInt(b);
|
|
}
|
|
} |