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
18 lines
317 B
Java
18 lines
317 B
Java
// "Defer assignment to 'n' using temp variable" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f(InputStream in) {
|
|
final int n;
|
|
int <caret>n1;
|
|
try {
|
|
n1 = in.read();
|
|
} catch (IOException e) {
|
|
n1 = -1;
|
|
}
|
|
n = n1;
|
|
int y = 4;
|
|
}
|
|
}
|
|
|