blob: 01f27af477f96f863e293c7adbee5564f0719494 [file] [log] [blame]
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class Test {
public static void main(String[] args){
ActionListener listener = new ActionListener(){
{
final String test = "problem reported twice";
}
public void actionPerformed(final ActionEvent e) {
}
};
}
}