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