diff options
Diffstat (limited to 'tests/base/test126')
-rw-r--r-- | tests/base/test126/Driver.java | 18 | ||||
-rw-r--r-- | tests/base/test126/Readme.txt | 7 |
2 files changed, 0 insertions, 25 deletions
diff --git a/tests/base/test126/Driver.java b/tests/base/test126/Driver.java deleted file mode 100644 index e855c5781..000000000 --- a/tests/base/test126/Driver.java +++ /dev/null @@ -1,18 +0,0 @@ -public class Driver { - public static void main(String[] args) { test(); } - - public static void test() { - - // local variable declaration in the init part of a for - for (int i = 0, j = 0; j < 10 ; i++, j++) { - j++; - } - int m, n, j = 0; - - // init part without local var declaration - for (m = 0, n = 0; j < 10 ; m++, n++) { - j++; - m++; - } - } -} diff --git a/tests/base/test126/Readme.txt b/tests/base/test126/Readme.txt deleted file mode 100644 index b4b666098..000000000 --- a/tests/base/test126/Readme.txt +++ /dev/null @@ -1,7 +0,0 @@ -Mode: VM run -Title: For Statement - -This tests the weaving of For statements. More variants of the for -statement can be added to the test. The current test only checks for -variation in the init part of the for loop. - |