mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
"Initialize variable" leads to an exception on invalid code IDEA-181272
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
// "Initialize variable 'X'" "true"
|
||||
interface Foo {
|
||||
char X = 0;
|
||||
int a = X;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// "Initialize variable 'X'" "true"
|
||||
interface Foo {
|
||||
char X.Y;
|
||||
int a = <caret>X;
|
||||
}
|
||||
Reference in New Issue
Block a user