mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
9 lines
248 B
Java
9 lines
248 B
Java
// "Replace with 'njc != null ?:'" "true-preview"
|
|
public class JC {
|
|
class Inner {}
|
|
|
|
public static void main(String[] args) {
|
|
JC njc = Math.random() > 0.5 ? new JC() : null;
|
|
System.out.println(njc != null ? njc.new Inner() : null);
|
|
}
|
|
} |