[Issue 23775] Visual D filter right-click crash

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23775 Rainer Schuetze changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 23734] Visual Studio crashes when right clicking a newly added folder in a D project

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23734 Rainer Schuetze changed: What|Removed |Added CC||johnch_a...@hotmail.com --- Comment #2 fro

[Issue 23784] ImportC: __ptr32, __ptr64

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

[Issue 23784] ImportC: __ptr32, __ptr64

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

[Issue 23795] Cannot cast _Complex!double to _Complex!float

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

[Issue 23806] [REG 2.099.0] Link error with -betterC

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23806 --- Comment #1 from SHOO --- I had hoped that the resolution of Issue 23799 would also fix this link error, but unfortunately it is still occurring at this time. https://issues.dlang.org/show_bug.cgi?id=23799 --

[Issue 23806] [REG 2.099.0] Link error with -betterC

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23806 SHOO changed: What|Removed |Added Severity|enhancement |regression --

[Issue 23806] New: [REG 2.099.0] Link error with -betterC

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23806 Issue ID: 23806 Summary: [REG 2.099.0] Link error with -betterC Product: D Version: D2 Hardware: x86_64 OS: All Status: NEW Severity: enhancement Prio

[Issue 23805] New: Runtime segmentation fault when destructor access function frame

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23805 Issue ID: 23805 Summary: Runtime segmentation fault when destructor access function frame Product: D Version: D2 Hardware: All OS: All Status: NEW

[Issue 13983] RefCounted needs to be @safe

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13983 elpenguin...@gmail.com changed: What|Removed |Added CC||elpenguin...@gmail.com --- Comment #

[Issue 21619] Parameter-less function literal in expression statement fails to parse

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=21619 Nick Treleaven changed: What|Removed |Added CC||briancsch...@gmail.com --- Comment #3 from

[Issue 14378] Parse block statement followed by ';' as a function literal

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14378 Nick Treleaven changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 11989] Phase out TickDuration

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=11989 Steven Schveighoffer changed: What|Removed |Added CC||schvei...@gmail.com Summar

[Issue 23804] New: max total size of static arrays

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23804 Issue ID: 23804 Summary: max total size of static arrays Product: D Version: D2 Hardware: Other OS: Other Status: NEW Severity: normal Priority: P1

[Issue 23798] Type inference should traverse trivial aliases

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23798 kdevel changed: What|Removed |Added CC||kde...@vogtner.de --

[Issue 1807] ENHANCEMENT: Let IFTI "see through" templates to simple aliases

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=1807 kdevel changed: What|Removed |Added CC||kde...@vogtner.de --

[Issue 23799] Link error with -betterC

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

[Issue 23803] New: Link error instead of error message when using betterC

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23803 Issue ID: 23803 Summary: Link error instead of error message when using betterC Product: D Version: D2 Hardware: x86_64 OS: Linux Status: NEW Severity: regressi

[Issue 23799] Link error with -betterC

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

[Issue 20458] CRTP + pass alias to virtual member to mixin = runtime crash

2023-03-23 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20458 --- Comment #4 from Basile-z --- Finally the generic reproduction ``` class Base { alias a = Derived.test; pragma(msg, typeof(a)); // triggers the vtbl corruption } class Derived : Base { void test(){} } void main() { (new Derived)