summaryrefslogtreecommitdiffstats
path: root/ajde/testdata/InpathTest/indir2/example/HelloWorld.java
diff options
context:
space:
mode:
Diffstat (limited to 'ajde/testdata/InpathTest/indir2/example/HelloWorld.java')
-rw-r--r--ajde/testdata/InpathTest/indir2/example/HelloWorld.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/ajde/testdata/InpathTest/indir2/example/HelloWorld.java b/ajde/testdata/InpathTest/indir2/example/HelloWorld.java
new file mode 100644
index 000000000..476abc7ee
--- /dev/null
+++ b/ajde/testdata/InpathTest/indir2/example/HelloWorld.java
@@ -0,0 +1,12 @@
+package example;
+
+public class HelloWorld {
+
+ public static void say(String msg) {
+ System.err.println(msg);
+ }
+
+ public static void main(String []argv) {
+ say("hello world");
+ }
+}