/* testing invalid casts */ class Main { void main() { int a; Object d; d = new Object(); a = (Object) d; a = (boolean[]) a; } }