blob: 37ff2f50d72b5a3787b41ba8def499450f2335e2 [file] [log] [blame]
class T {
int f(Object x) {
if (x instanceof final Integer i) {
return i;
}
return -1;
}
}