diff options
Diffstat (limited to 'tests/bugs150/pr119210/TestLib.java')
-rw-r--r-- | tests/bugs150/pr119210/TestLib.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs150/pr119210/TestLib.java b/tests/bugs150/pr119210/TestLib.java new file mode 100644 index 000000000..09f1770a5 --- /dev/null +++ b/tests/bugs150/pr119210/TestLib.java @@ -0,0 +1,8 @@ +public class TestLib { + + public static void main(String[] args) { + System.err.println("obtaining five, got "+new TestLib().getFive()); + } + + public int getFive() { return 5; } +}
\ No newline at end of file |