[tests] fixed some tests
[ozulis.git] / tests / lang / mugiwara / flow-control / goto.mgw
blobb620f525ba5eefceb99259577c7b46b72734a266
1 int32 main()
3   int32 a;
5  teton:
6   a = a + 1;
7   goto teton;
8  return 0;