Files
2023-11-17 18:10:56 +00:00

12 lines
217 B
Java

// "Simplify 'obj instanceof String str' to true" "true"
class Test {
void test(Object obj) {
if (obj instanceof String str1) {
if (str1.isEmpty()) {
}
String str = "hello";
}
}
}