mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Could be available if there's only one write visible for all the reads Fixes IDEA-354157 Inline variable not working when staying on uninitialized declaration GitOrigin-RevId: e257b2b493a3902e901699efa4eac90f62e3108b
12 lines
241 B
Java
12 lines
241 B
Java
public class Main {
|
|
public static void main(String[] args) {
|
|
String a<caret>aa;
|
|
if (args.length > 0) {
|
|
aaa = args[0];
|
|
System.out.println(aaa);
|
|
} else {
|
|
aaa = "hello";
|
|
System.out.println(aaa);
|
|
}
|
|
}
|
|
} |