blob: 4aca069684c612cd6695355c344c65a97b68fe4c [file] [log] [blame]
// "Make 'r' not final" "false"
class C {
void m() throws Exception {
try (AutoCloseable r = null) {
<caret>r = null;
}
}
}