mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
testdata for IDEA-84211
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// "Create local variable 'x'" "true"
|
||||
class X {
|
||||
void m(String s) {}
|
||||
{
|
||||
String x;
|
||||
m(x);
|
||||
x.doSmth();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Create local variable 'x'" "true"
|
||||
class X {
|
||||
void m(String s) {}
|
||||
{
|
||||
m(x);
|
||||
<caret>x.doSmth();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user