Files
2019-12-28 11:10:30 +00:00

12 lines
204 B
Java

// "Replace 'n' with pattern variable" "true"
class X {
void test(Object obj) {
while (obj instanceof Node n) {
obj = n.getNext();
}
}
interface Node {
Object getNext();
}
}