Re: dmd segmentation fault with duplicate class definition

2018-03-30 Thread LiNbO3 via Digitalmars-d
On Thursday, 29 March 2018 at 21:18:02 UTC, Seb wrote: On Thursday, 29 March 2018 at 20:48:47 UTC, number wrote: I'm learning, so no idea if this is known or what causes the segfault. [...] Always try the latest release when you run into an ICE - chances are very good that it already has be

Re: dmd segmentation fault with duplicate class definition

2018-03-30 Thread number via Digitalmars-d
On Thursday, 29 March 2018 at 21:18:02 UTC, Seb wrote: On Thursday, 29 March 2018 at 20:48:47 UTC, number wrote: I'm learning, so no idea if this is known or what causes the segfault. [...] Always try the latest release when you run into an ICE - chances are very good that it already has be

Re: dmd segmentation fault with duplicate class definition

2018-03-29 Thread Seb via Digitalmars-d
On Thursday, 29 March 2018 at 20:48:47 UTC, number wrote: I'm learning, so no idea if this is known or what causes the segfault. [...] Always try the latest release when you run into an ICE - chances are very good that it already has been fixed: https://run.dlang.io/is/OySBGO

Re: dmd segmentation fault with duplicate class definition

2018-03-29 Thread Jonathan M Davis via Digitalmars-d
On Thursday, March 29, 2018 20:48:47 number via Digitalmars-d wrote: > I'm learning, so no idea if this is known or what causes the > segfault. If you cannot find the issue https://issues.dlang.org, then report it. Worst case, if there was a matching report that you missed, then the new issue will

dmd segmentation fault with duplicate class definition

2018-03-29 Thread number via Digitalmars-d
I'm learning, so no idea if this is known or what causes the segfault. Linux DMD64 D Compiler v2.078.3 ``` void main() { import std.stdio; { class C { int i; } } { cl