// "Replace 'Double.class' with 'Integer.class'" "true-preview" class Demo { native static T tryCast(Object obj, Class clazz); void test(Object obj) { Integer i = tryCast(obj, Integer.class); } }