mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
Fixes IDEA-344453 Intellij should not try to initialize an Optional var with null GitOrigin-RevId: 8097988bf1335a282138e8d09e350c3a5f65204d
10 lines
197 B
Java
10 lines
197 B
Java
// "Initialize variable 'string'" "true-preview"
|
|
|
|
import java.util.*;
|
|
|
|
public class Test {
|
|
public static void main(String[] args) {
|
|
String string;
|
|
System.out.println(<caret>string);
|
|
}
|
|
} |