one more test

This commit is contained in:
Alexey Kudravtsev
2017-02-22 16:42:24 +03:00
parent 752dff3f04
commit 63c317943d
2 changed files with 17 additions and 0 deletions
@@ -0,0 +1,9 @@
// "Split into declaration and assignment" "true"
class Test {
{
int i;
for (i<caret>=0; i<10; i++) {
System.out.println();
}
}
}
@@ -0,0 +1,8 @@
// "Split into declaration and assignment" "true"
class Test {
{
for (int i<caret>=0; i<10; i++) {
System.out.println();
}
}
}