public class Casts {
    void method(Object o) {
        char c = (char) o;
    }
}
