Files
2023-11-17 18:11:01 +00:00

13 lines
288 B
Java

// "Simplify 'obj instanceof String str' to true extracting side effects" "true"
class Test {
void test(Object obj) {
if (obj instanceof String s) {
s = s.trim();
String str = (String) obj;
if (str.isEmpty()) {
}
System.out.println(s);
}
}
}