blob: 920c9d8ae4b896e4f5a27a8d3d2d0e5e28b05404 [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) {
ActionListener listener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
int <caret>i = 0;
System.out.println(i);
}
};
}
}