testdata for IDEA-84211

This commit is contained in:
Anna Kozlova
2018-06-25 17:08:40 +03:00
parent 4fa8963aa7
commit 8a3e53d414
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
// "Create local variable 'x'" "true"
class X {
void m(String s) {}
{
String x;
m(x);
x.doSmth();
}
}

View File

@@ -0,0 +1,8 @@
// "Create local variable 'x'" "true"
class X {
void m(String s) {}
{
m(x);
<caret>x.doSmth();
}
}