local variable was not typed as referenced type
[ozulis.git] / tests / lang / mugiwara / input / flow-control / while.mgw
blob91d569e5e3b6b23576defcbfb80bc3f75365bdd4
1 int32 main()
3   int64 a;
5   a = 1;
6   while (a)
7     a = a + 1;
8   return a;