aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/pr328099/src/foo/bar/Foo.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs1612/pr328099/src/foo/bar/Foo.java')
-rwxr-xr-xtests/bugs1612/pr328099/src/foo/bar/Foo.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bugs1612/pr328099/src/foo/bar/Foo.java b/tests/bugs1612/pr328099/src/foo/bar/Foo.java
new file mode 100755
index 000000000..2a35392a2
--- /dev/null
+++ b/tests/bugs1612/pr328099/src/foo/bar/Foo.java
@@ -0,0 +1,18 @@
+package foo.bar;
+
+/**
+ * Hello world!
+ *
+ */
+public class Foo
+{
+ public void bar() {
+ System.out.print(this.getClass().getSimpleName() + ".bar()");
+ }
+
+ public static void main( String[] args )
+ {
+ Foo foo = new Foo();
+ foo.bar();
+ }
+}