2 public class Main extends flash.display.MovieClip {
5 /* test breaking loop */
11 if(i!=7) trace("error");
14 /* test not breaking loop */
20 if(i!=10) trace("error");
23 /* test breaking while */
30 if(i!=15) trace("error");
33 /* test non-breaking while */
40 if(i!=30) trace("error");