elena-lang icon indicating copy to clipboard operation
elena-lang copied to clipboard

The field is not property incremented by an addition assignment

Open arakov opened this issue 1 year ago • 0 comments

Describe the bug The field is not property incremented by an addition assignment

To Reproduce

singleton Exceptions
{
   static int i;

   foo()
   {
         for(i := 0, i < 2, i  += 1)
         {
             console.printLine(i)
         }
    }    
}

Expected behavior The code should generate the list of numbers from 0 till 1

arakov avatar Sep 20 '23 11:09 arakov