blob: 91b5dead8b4dde66b193d03f488741efd0eca056 [file] [log] [blame]
// "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);
}
}
}
}