dlangBugzillaToGithub
dlangBugzillaToGithub
#### dfawcus+dlang commented on 2024-10-04T15:05:30Z ````markdown I just ran in to exactly this issue while evaluating the potential for adding D (betterC mode) code to an existing C project, as...
#### dfawcus+dlang commented on 2024-10-04T16:07:15Z ````markdown I should modify that comment, I see that I can work with betterC despite the inability to mark the C imports as @nogc etc,...
#### ibuclaw (@ibuclaw) commented on 2022-01-23T12:30:40Z ````markdown Can only go as far back as the following PR in dmd before druntime no longer is compilable. https://github.com/dlang/dmd/pull/12209 Fair amount of reduction...
#### pro.mathias.lang (@Geod24) commented on 2022-01-23T15:24:23Z ````markdown Currently `-checkaction=context` is not usable without `-unittest`, at least this has been our experience. It results in heaps of undefined symbols. This is...
#### moonlightsentinel commented on 2022-02-01T11:58:19Z ````markdown (In reply to Mathias LANG from comment #2) > This is due, I believe, to Druntime being compiled with `-checkaction=D` Both `-checkaction=D` and `-release`...
#### ag0aep6g commented on 2018-06-28T19:55:56Z ````markdown From a quick glance at the source, DMD might be rejecting comparisons of arrays that don't have a common type [1][2]. And apparently, it...
#### default_357-line (@FeepingCreature) commented on 2018-06-29T08:18:41Z ````markdown Just casting both sides to const seems to work. https://github.com/dlang/dmd/pull/8413 ````
#### yebblies commented on 2013-11-21T08:24:51Z ````markdown Default arguments are evaluated at the call site... so I don't think this is necessarily wrong. ````
#### bearophile_hugs commented on 2013-11-21T08:31:01Z ````markdown (In reply to comment #1) > Default arguments are evaluated at the call site... so I don't think this is > necessarily wrong. I...
#### yebblies commented on 2013-11-21T08:43:23Z Hmm, this doesn't work either. ```d class Foo { int a = 0; void bar(int x = a) { } void baz() { bar(); }...