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
In the below program foo is optimized away even in Debug-mode. For debugging purposes it would be useful to be able to inspect the values of unused local variables. As such they should not be optimized away in the Debug configuration.
using System.Console;
namespace Test
{
publicmodule Main
{
public Main() : void
{
def foo = 42;
WriteLine("Whatever");
}
}
}
The text was updated successfully, but these errors were encountered:
In the below program
foo
is optimized away even in Debug-mode. For debugging purposes it would be useful to be able to inspect the values of unused local variables. As such they should not be optimized away in the Debug configuration.The text was updated successfully, but these errors were encountered: