diff options
| author | William Deegan <bill@baddogconsulting.com> | 2018-10-15 18:56:39 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-15 18:56:39 (GMT) |
| commit | e422f8fa002b9cbe6fb5785c301cfc63d8843a99 (patch) | |
| tree | a987fed537a6a8ac1bb6cc4fc09def0dc8830e47 /test/Java/java_version_image/src5 | |
| parent | 55c4cebac66372da7a27c7b1e00d435dc2abe27c (diff) | |
| parent | cd1971093ec238e57770e72998caa3055e7af449 (diff) | |
| download | SCons-e422f8fa002b9cbe6fb5785c301cfc63d8843a99.zip SCons-e422f8fa002b9cbe6fb5785c301cfc63d8843a99.tar.gz SCons-e422f8fa002b9cbe6fb5785c301cfc63d8843a99.tar.bz2 | |
Merge pull request #3206 from bdbaddog/fix_java_tests_path_with_spaces
Revamp Java tools to search in reasonable paths.
Diffstat (limited to 'test/Java/java_version_image/src5')
| -rw-r--r-- | test/Java/java_version_image/src5/TestSCons.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Java/java_version_image/src5/TestSCons.java b/test/Java/java_version_image/src5/TestSCons.java new file mode 100644 index 0000000..46572c4 --- /dev/null +++ b/test/Java/java_version_image/src5/TestSCons.java @@ -0,0 +1,7 @@ +class TestSCons { + public static void main(String[] args) { + Foo[] fooArray = new Foo[] { new Foo() }; + } +} + +class Foo { } |
