mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
13 lines
185 B
Java
13 lines
185 B
Java
// "Defer assignment to 'n' using temp variable" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
final int n;
|
|
{
|
|
int n1;
|
|
n1 =3;
|
|
<caret>n1 =3;
|
|
n = n1;
|
|
}
|
|
}
|