diff options
author | wisberg <wisberg> | 2003-03-10 09:34:37 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-03-10 09:34:37 +0000 |
commit | 1c3c02518fc13f022230acac07db10649776955b (patch) | |
tree | 8e730458c29ea9b66c63b9e6f2fc9a9f85e4907b /taskdefs/testdata/incTest/src/packageOne/Main.java | |
parent | 12bf4ac8aab5d465f50be0cf60a46937559a00cc (diff) | |
download | aspectj-1c3c02518fc13f022230acac07db10649776955b.tar.gz aspectj-1c3c02518fc13f022230acac07db10649776955b.zip |
manual test for experimental ant task option to copy non-.class file contents of input jars to the output jar after each compile or recompile.
Currently showing VerifyError on recompile -- need to investigate further.
Diffstat (limited to 'taskdefs/testdata/incTest/src/packageOne/Main.java')
-rw-r--r-- | taskdefs/testdata/incTest/src/packageOne/Main.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/taskdefs/testdata/incTest/src/packageOne/Main.java b/taskdefs/testdata/incTest/src/packageOne/Main.java new file mode 100644 index 000000000..278614543 --- /dev/null +++ b/taskdefs/testdata/incTest/src/packageOne/Main.java @@ -0,0 +1,8 @@ + +package packageOne; + +public class Main { + public static void main(String[] args) { + System.out.println("in packageOne.Main.main(..)"); + } +}
\ No newline at end of file |