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