mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Provide an interface to specify suggested names from outside Still part of IDEA-338334 GitOrigin-RevId: 7bb09b7150b463ed8a0c24453c968d60d9e716fa
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 <caret>n1;
|
|
n1 =3;
|
|
n1 =3;
|
|
n = n1;
|
|
}
|
|
}
|