mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
10 lines
161 B
Java
10 lines
161 B
Java
class A {
|
|
public void test(boolean a, boolean b) {
|
|
final boolean ab = a &&
|
|
b;
|
|
if (true && ab
|
|
//some comment
|
|
|
|
);
|
|
}
|
|
} |