[Issue 23701] ImportC: __int64 is not documented as supported Visual C extension

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23701 --- Comment #5 from Walter Bright --- (In reply to Iain Buclaw from comment #4) > (In reply to Walter Bright from comment #3) > > I take that back. importc.h has a #define for it: > > > > #define __int64 long long > Should we be testing for thin

[Issue 23692] ImportC: __pragma and __declspec are not documented as supported Visual C extensions

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23692 --- Comment #5 from Dlang Bot --- @WalterBright created dlang/dlang.org pull request #3623 "fix Issue 23692 - ImportC: __pragma and __declspec are not documented…" fixing this issue: - fix Issue 23692 - ImportC: __pragma and __declspec are not docum

[Issue 23692] ImportC: __pragma and __declspec are not documented as supported Visual C extensions

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23692 Dlang Bot changed: What|Removed |Added Keywords||pull --- Comment #4 from Dlang Bot --- @WalterB

[Issue 23950] Weird backend fail with noreturn type - cod1.d(4027): Assertion failure

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23950 RazvanN changed: What|Removed |Added Keywords||backend, ice CC|

[Issue 16384] Invariant not called with multiple defined.

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16384 Dlang Bot changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Issue 23719] runnable/test22071.c:22:16: error: ‘abc’ is a pointer; did you mean to use ‘->’?

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23719 Dlang Bot changed: What|Removed |Added Keywords||pull --- Comment #2 from Dlang Bot --- @WalterB

[Issue 23949] core.stdc.assert_ for FreeBSD and DragonFlyBSD is incorrect

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23949 Dlang Bot changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Issue 23950] Weird backend fail with noreturn type - cod1.d(4027): Assertion failure

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23950 --- Comment #1 from m...@ernestocastellotti.it --- The absurd thing is that instead this code compiles and works correctly: import core.stdc.stdlib; void main() { auto foo = (false != true) && true || abort(); } This looks just like a bad bug

[Issue 23950] New: Weird backend fail with noreturn type - cod1.d(4027): Assertion failure

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23950 Issue ID: 23950 Summary: Weird backend fail with noreturn type - cod1.d(4027): Assertion failure Product: D Version: D2 Hardware: x86_64 OS: Linux Sta

[Issue 23949] core.stdc.assert_ for FreeBSD and DragonFlyBSD is incorrect

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23949 --- Comment #3 from Dlang Bot --- @ErnyTech created dlang/dmd pull request #15286 "[BACKPORT] Fix issue 23949 - core.stdc.assert_ for FreeBSD is incorrect" mentioning this issue: - [BACKPORT] Fix issue 23949 - core.stdc.assert_ for FreeBSD is incorr

[Issue 23949] core.stdc.assert_ for FreeBSD and DragonFlyBSD is incorrect

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23949 m...@ernestocastellotti.it changed: What|Removed |Added Summary|core.stdc.assert_ for |core.stdc.assert_ for

[Issue 23949] core.stdc.assert_ for FreeBSD and DragonFlyBSD is incorrect

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23949 --- Comment #2 from m...@ernestocastellotti.it --- Also DragonFlyBSD is incorrect --

[Issue 23949] New: core.stdc.assert_ for FreeBSD is incorrect

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23949 Issue ID: 23949 Summary: core.stdc.assert_ for FreeBSD is incorrect Product: D Version: D2 Hardware: x86_64 OS: FreeBSD Status: NEW Severity: normal P

[Issue 23949] core.stdc.assert_ for FreeBSD is incorrect

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23949 Dlang Bot changed: What|Removed |Added Keywords||pull --- Comment #1 from Dlang Bot --- @ErnyTec

[Issue 17934] [scope] scopeness entrypoint for unique/ref-counted missing

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17934 Dlang Bot changed: What|Removed |Added Keywords||pull --- Comment #13 from Dlang Bot --- @ntrel

[Issue 23948] __FILE__ and __MODULE__ cannot be implicitly converted to const(char)* as default paramenter

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23948 Dlang Bot changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Issue 17934] [scope] scopeness entrypoint for unique/ref-counted missing

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17934 --- Comment #12 from Nick Treleaven --- If you define `front` as `return`, *not* `return scope`: Elem front() @safe return You get an error for: elem = l.front; I think that fixes this issue, though that feature may need documenting. --

[Issue 23757] ImportC: fail to import malloc

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23757 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Issue 23719] runnable/test22071.c:22:16: error: ‘abc’ is a pointer; did you mean to use ‘->’?

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23719 Walter Bright changed: What|Removed |Added CC||bugzi...@digitalmars.com --- Comment #1 from

[Issue 23725] ImportC fails to parse __asm __volatile on FreeBSD stdatomic.h and fenv.h

2023-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23725 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---