diff options
Diffstat (limited to 'libjava/testsuite/libjava.compile/PR15769.java')
-rw-r--r-- | libjava/testsuite/libjava.compile/PR15769.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/PR15769.java b/libjava/testsuite/libjava.compile/PR15769.java new file mode 100644 index 00000000000..8107626b3e6 --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR15769.java @@ -0,0 +1,10 @@ +class PR15769 { + private boolean foo () { return false; } + + + public boolean bar (double blaz) + { + return (Double.POSITIVE_INFINITY != blaz) && foo (); + } +} + |