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,8 @@
class T {
void test(Object a) {
if (true) <caret>
if (a != null)
System.out.println("a = " + a.toString());
}
}