/* Java allows illegal casts of null. */ class nullcast { public static void main(String args[]) { Object o; nullcast n = null; o = (Object)n; String s = (String)o; } }