blob: c4927e6fa984fc9dc7e0c7707e46c5a5bc0e1f7a [file] [log] [blame]
// "Suppress for method" "true"
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
class Test {
public static void main(String[] args) {
ActionListener listener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
int <caret>i = 0;
System.out.println(i);
}
};
}
}