IDEA-86300 Create local variable intention implemented

This commit is contained in:
Danila Ponomarenko
2012-06-07 17:56:41 +04:00
parent ac5b270ef6
commit 389ffea2d7
10 changed files with 153 additions and 0 deletions
@@ -0,0 +1,9 @@
// "Introduce local variable" "false"
class a {
void a() {
a<caret>();
}
}