https://issues.dlang.org/show_bug.cgi?id=22775
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #4 from Walter Bright <[email protected]> --- What's happening is that `S` does not have any pointers in it. `scope` only applies to pointers, otherwise it is ignored. That's why it never shows up. If `S` has a pointer member, it shows up. This is expected behavior. --
