yebblies/issue12503
Issue 12503 - Bad optimization with scope(success) and return statement
--
pull request #3826 from yebblies/issue12503
Issue 12503 - Bad optimization with scope(success) and return statement
--
https://issues.dlang.org/show_bug.cgi?id=12503
github-bugzi...@puremagic.com changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|-
https://issues.dlang.org/show_bug.cgi?id=12503
yebblies changed:
What|Removed |Added
Keywords||pull
CC|
https://issues.dlang.org/show_bug.cgi?id=12503
--- Comment #1 from Kenji Hara ---
The lowered code generated by front-end will cause same issue.
void fun(string a)
{
string b = a;
bool __os1 = false;
try
{
try
{
a = null;
return ;
}