Thread overview
CTFE data corruption. Still not filed in GH?
May 21
kdevel
May 21
Kagamin
May 21
kdevel
May 21
Kagamin
Jun 19
kdevel
Jun 19
monkyyy
5 days ago
Kagamin
May 21
As I do not have a GH account, I cannot file my recent
observations [1]. What is the best way to post an issue
here in the forum, such that it gets the appropriate
attention? Shall I prefix the subject with "[BUG]"?

[1] May 05
    CTFE and RTFE results differ (aliasing)
    https://forum.dlang.org/post/tjipoyhsrkhztphmyrwk@forum.dlang.org
May 21

https://github.com/dlang/dmd/issues/21396 here

May 21

On Wednesday, 21 May 2025 at 16:30:17 UTC, Kagamin wrote:

>

https://github.com/dlang/dmd/issues/21396 here

Page not found

May 21

Maybe it's on premoderation.

June 19

On Wednesday, 21 May 2025 at 19:01:14 UTC, Kagamin wrote:

>

Maybe it's on premoderation.

For almost a month now?

June 19

On Thursday, 19 June 2025 at 08:15:53 UTC, kdevel wrote:

>

On Wednesday, 21 May 2025 at 19:01:14 UTC, Kagamin wrote:

>

Maybe it's on premoderation.

For almost a month now?

I would suggest you get your hopes calibrated, my bug reports to fix rate is maybe 5% and its not uncommon for me to rediscover an ancient bug thats been known since the before times.

Dont trust the spec, only what code works.

June 20
On Wednesday, 21 May 2025 at 11:25:31 UTC, kdevel wrote:
> As I do not have a GH account, I cannot file my recent
> observations [1]. What is the best way to post an issue
> here in the forum, such that it gets the appropriate
> attention? Shall I prefix the subject with "[BUG]"?
>
> [1] May 05
>     CTFE and RTFE results differ (aliasing)
>     https://forum.dlang.org/post/tjipoyhsrkhztphmyrwk@forum.dlang.org

Filed as https://github.com/dlang/dmd/issues/21461
5 days ago

On Thursday, 19 June 2025 at 08:15:53 UTC, kdevel wrote:

>

On Wednesday, 21 May 2025 at 19:01:14 UTC, Kagamin wrote:

>

Maybe it's on premoderation.

For almost a month now?

Can't be helped, I don't control how github works. Welcome to Big Tech, everything is serious here.

1 day ago

On Friday, 20 June 2025 at 03:24:31 UTC, Nicholas Wilson wrote:

>

On Wednesday, 21 May 2025 at 11:25:31 UTC, kdevel wrote:

>

As I do not have a GH account, I cannot file my recent
observations [1]. What is the best way to post an issue
here in the forum, such that it gets the appropriate
attention? Shall I prefix the subject with "[BUG]"?

[1] May 05
CTFE and RTFE results differ (aliasing)
https://forum.dlang.org/post/tjipoyhsrkhztphmyrwk@forum.dlang.org

Filed as https://github.com/dlang/dmd/issues/21461

Golfed it a bit:

int[1] foo() {
  int[1] s = [1];
  int[1] t = s;
  s[0] = 2;
  return t;
}

void main() {
  enum r = foo();
  auto s = foo();
  assert(r == s);
}

What a pretty bug!