You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classMain {
staticfunctionmain() {
vara:Float=9999.0;
varb:Float=1.0;
varc:Float=0.0;
c=c/b;
vard=5-a;
// in debug, hover over c// c should be 0 // but it is -9994
}
}
The text was updated successfully, but these errors were encountered:
Thanks for the repro. Its due to the compiler optimizing out some local
variables. I'll think about what can be done there 😉
Le jeu. 12 mai 2022 à 20:29, laughsuggestion ***@***.***> a
écrit :
The text was updated successfully, but these errors were encountered: