[Issue 15083] declaring a variable, cannot access frame pointer

2022-10-12 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15083 RazvanN changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 15083] declaring a variable, cannot access frame pointer

2015-09-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15083 --- Comment #4 from John Colvin --- (In reply to Marc Schütz from comment #3) > (In reply to John Colvin from comment #2) > > You can definitely declare variables with Voldemort types. > > > > e.g. > > auto foo(){ struct S{} return S(); } > > void b

[Issue 15083] declaring a variable, cannot access frame pointer

2015-09-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15083 --- Comment #3 from Marc Schütz --- (In reply to John Colvin from comment #2) > You can definitely declare variables with Voldemort types. > > e.g. > auto foo(){ struct S{} return S(); } > void bar(){ typeof(foo()) a; } > > is fine. > That's not

[Issue 15083] declaring a variable, cannot access frame pointer

2015-09-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15083 --- Comment #2 from John Colvin --- (In reply to Marc Schütz from comment #1) > (In reply to John Colvin from comment #0) > > This uses phobos, but I'm pretty sure typeof should work here so it's a dmd > > bug. > > typeof itself _does_ work, this co

[Issue 15083] declaring a variable, cannot access frame pointer

2015-09-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15083 Marc Schütz changed: What|Removed |Added CC||schue...@gmx.net --- Comment #1 from Marc Schü