move CompleteStatementTest to java-tests

This commit is contained in:
Dmitry Jemerov
2010-01-20 21:18:06 +03:00
parent 782c794a65
commit 457b469b9d
156 changed files with 1309 additions and 3 deletions
@@ -0,0 +1,11 @@
class Foo {
boolean a;
{
if (a) {
} else {
<caret>
}
a = 2;
}
}