mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-31 03:29:20 +07:00
10 lines
162 B
Java
10 lines
162 B
Java
// "Unroll loop" "true-preview"
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
void test() {
|
|
if (!"xyz".isEmpty()) {
|
|
System.out.println("xyz");
|
|
}
|
|
}
|
|
} |