https://issues.dlang.org/show_bug.cgi?id=22522
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution|--- |WONTFIX --- Comment #4 from Walter Bright <[email protected]> --- The error message isn't great, but it is correctly identifying the problem. ptr = &storage; *is* taking the address of `this`, and assigning it to `this`. As in`storage` is *(this+0), and `ptr` is *(this+8) --
