thradams/CPrime-V1

Better diagnostic: for variable scope error

thradams opened this issue · 0 comments

This sample is working but the scope of i should be inside for only.

int main()
{
  for (int i =0; i < 10; i++)
  {
  }
  i = 1;
}