Thread overview |
---|
June 13, 2010 undefined identifier with scope statement? | ||||
---|---|---|---|---|
| ||||
import std.stdio; void main() { scope(exit) writeln(res); auto res = 0; } This compiles, but using failure or success in the scope guard statement gives "undefined identifier res". Is this intended? If yes, why? |
June 13, 2010 Re: undefined identifier with scope statement? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Trass3r | Hello Trass3r, > import std.stdio; > > void main() > { > scope(exit) writeln(res); > auto res = 0; > } > This compiles, but using failure or success in the scope guard > statement > gives "undefined identifier res". > Is this intended? If yes, why? I'm going to guess that the given case is an accepts-invalid bug caused by scope getting re written as a try/finally with the writeln at the bottom of some scope containing res and the other cases put it outside the scope. File a bug and see what happens. -- ... <IXOYE>< |
June 14, 2010 Re: undefined identifier with scope statement? | ||||
---|---|---|---|---|
| ||||
Posted in reply to BCS | > I'm going to guess that the given case is an accepts-invalid bug caused by scope getting re written as a try/finally with the writeln at the bottom of some scope containing res and the other cases put it outside the scope. File a bug and see what happens. http://d.puremagic.com/issues/show_bug.cgi?id=4313 |
Copyright © 1999-2021 by the D Language Foundation