mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
GitOrigin-RevId: 4d6a5487576dbbc4aca9c89b067eec8218aff686
11 lines
298 B
Java
11 lines
298 B
Java
// "Remove 'if' statement extracting side effects" "true-preview"
|
|
class X {
|
|
void test() {
|
|
Object obj = "Hello from pattern matching";
|
|
String s = getString();
|
|
System.out.println(s);
|
|
System.out.println(s);
|
|
}
|
|
|
|
native @org.jetbrains.annotations.NotNull String getString();
|
|
} |