https://issues.dlang.org/show_bug.cgi?id=18439
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #9 from Walter Bright <[email protected]> --- For functions, the line is: sc2.stc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.abstract_ | STC.deprecated_ | STC.override_ | STC.TYPECTOR | STC.final_ | STC.tls | STC.gshared | STC.ref_ | STC.return_ | STC.property | STC.nothrow_ | STC.pure_ | STC.safe | STC.trusted | STC.system); https://github.com/dlang/dmd/blob/master/src/dmd/semantic3.d#L316 Interestingly, @nogc does flow through here. --
