// Test types in a Cast (cannot cast to unrelated type) class Main { void main() { int a; boolean b; //b = false; a = (int) b; } }