summaryrefslogtreecommitdiffstats
path: root/tests/pureJava/CastAndBinary.java
blob: 5c489137a807ede19225caddd9c7eaf666933d47 (plain)
1
2
3
4
5
public class CastAndBinary {
    public static void main(String[] args) {
	System.out.println((int)3 == 5);
    }
}