class Ideone{ public static void main (String[] args) throws java.lang.Exception { //Error boolean x = true; int y = x; //Error boolean x = true; int y = (int) x; }}