Crash when declaring array with var and then setting a value
-
Here's the code that causes the crash:
var a, b[3] b[0] = 1
The crash apparently happens when you declare non-array variables and array variables in the same line
I had a program I was working a lot on that suddenly started crashing because of this, took me a lot of effort to find out what was causing the problem. Thankfully, I didn't lose my progress with the code and was able to fix it :P
-
@RodrigoDavy Thanks for letting us know I will report this