mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 19:28:23 +07:00
calc expected type on the left of assignment based on standalone expression type from the right side (IDEA-199273)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
// "Create local variable 't'" "true"
|
||||
class Test {
|
||||
private void f(boolean f) {
|
||||
String t = f ? null : "";
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Create local variable 't'" "true"
|
||||
class Test {
|
||||
private void f(boolean f) {
|
||||
<caret>t = f ? null : "";
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user