mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
15 lines
335 B
Java
15 lines
335 B
Java
// "Suppress for class" "true"
|
|
import java.awt.event.ActionListener;
|
|
import java.awt.event.ActionEvent;
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
|
|
/** @noinspection LocalCanBeFinal*/
|
|
class T {
|
|
void foo() {
|
|
int i = 0;
|
|
System.out.println(i);
|
|
}
|
|
}
|
|
}
|
|
} |