!592 // gets run with translator #592 (auto-import) public class main { public static void main(String[] args) { JFrame frame = new JFrame("Auto-Import-Test succeeded! :)"); frame.setBounds(100, 100, 500, 400); frame.setVisible(true); exitOnFrameClose(frame); } static void exitOnFrameClose(JFrame frame) { frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } }