summaryrefslogtreecommitdiffstats
path: root/tests/pureJava/CastAndBinary.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pureJava/CastAndBinary.java')
-rw-r--r--tests/pureJava/CastAndBinary.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/pureJava/CastAndBinary.java b/tests/pureJava/CastAndBinary.java
new file mode 100644
index 000000000..5c489137a
--- /dev/null
+++ b/tests/pureJava/CastAndBinary.java
@@ -0,0 +1,5 @@
+public class CastAndBinary {
+ public static void main(String[] args) {
+ System.out.println((int)3 == 5);
+ }
+}