mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 144c572d76caaeee1bdba94c26fcea6b54aa40c7
10 lines
168 B
Java
10 lines
168 B
Java
// "f '5'" "true"
|
|
public class Test {
|
|
void foo(){
|
|
if ((int) '5' == '5') {
|
|
Syste.out.print((int) '5');
|
|
}
|
|
}
|
|
void bar(){foo();}
|
|
void bar1(){foo();}
|
|
} |