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

12 lines
247 B
Java

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