/* testing casting as well as creating new Objects*/ class Main { void main() { int a; int b; Object c; Object d; c = null; d = new Object(); a = 10; c = (Object) d; } }