https://issues.dlang.org/show_bug.cgi?id=14389
Adam D. Ruppe <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Adam D. Ruppe <[email protected]> --- class C { private: @safe: void foo() {} } Should foo still be private? I think a lot of people use this pattern today and expect foo to be private and @safe. Your change would make the @safe turn private off. You expanded on chat to say it should be written private @safe: void foo() {} if you want both, put them both behind the colon. That's not a bad idea, I'll admit. --
