// "Remove local variable 'c'" "true" class C { String s; void foo(Object o) { if (o instanceof C) { C c; String t = (c = (C) o).s; } } }