dlangBugzillaToGithub
dlangBugzillaToGithub
#### andrej.mitrovich (@AndrejMitrovic) commented on 2014-03-31T05:19:35Z ````markdown (In reply to comment #2) > > I'd like to request the function "originalType", which would be std.traits' > "OriginalType", but that operates...
#### monarchdodra commented on 2014-03-31T13:49:41Z ````markdown (In reply to comment #3) > (In reply to comment #2) > > > I'd like to request the function "originalType", which would be...
#### andrei (@andralex) commented on 2013-02-26T09:26:57Z ````markdown Bearophile, could you please paste this as a pull request. Thanks! ````
#### andrej.mitrovich (@AndrejMitrovic) commented on 2013-09-16T08:48:37Z ````markdown So should the declaration of such a function be denied if it's pure, or should only calls be denied where a global is...
#### issues.dlang (@jmdavis) commented on 2013-09-16T09:35:22Z ````markdown The default argument is only a problem if the pure function is called from a pure function. It's perfectly fine if it's called...
#### pro.mathias.lang (@Geod24) commented on 2020-11-09T00:21:32Z ````markdown This applies to all attributes but `nothrow`, but only because `nothrow` is the very last to be checked. E.g. this compiles: ``` int...
#### pro.mathias.lang (@Geod24) commented on 2020-11-09T00:22:24Z ````markdown *** Issue 13442 has been marked as a duplicate of this issue. *** ````
#### ibuclaw (@ibuclaw) commented on 2022-07-16T08:00:04Z ````markdown *** Issue 19645 has been marked as a duplicate of this issue. *** ````
#### ibuclaw (@ibuclaw) commented on 2022-07-16T08:10:58Z ````markdown I just encountered this when reviewing some @safe code in the dmd compiler implementation. The crux of which boils down to: ``` int...
#### dlang-bot commented on 2022-07-16T09:16:48Z ````markdown @ibuclaw created dlang/dmd pull request #14309 "fix Issue 11048 - Default arguments bypass most attributes check (pure, @safe, @nogc)" fixing this issue: - fix...