// "Replace with a null check" "true-preview" class Test { void test(String s) { Object obj = s; if(obj instanceof String) { System.out.println("always"); } } }