blob: a73d1a4f0eeb539d9d26d87be7d0c9104a30fc7c [file] [log] [blame]
// "Defer assignment to 'n' using temp variable" "true"
import java.io.*;
class a {
final int n;
{
n=3;
<caret>n=3;
}
}