On Wednesday, 9 August 2023 at 12:51:51 UTC, Adam D Ruppe wrote:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110959
Related DMD bug - the backporting of which looks like it'd fix
your test case too. https://issues.dlang.org/show_bug.cgi?id=23010
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110959
On Wednesday, 9 August 2023 at 12:44:16 UTC, Iain Buclaw wrote:
Can you raise a bug report against gcc.gnu.org/bugzilla?
yeah i just got the email approving the account a minute ago.
didn't take as long as i thought it would lol
On Wednesday, 9 August 2023 at 11:48:41 UTC, Adam D Ruppe wrote:
$ cat gdcbug.d
class ArsdExceptionBase : object.Exception {
package this(string operation, string file = __FILE__,
size_t line = __LINE__, Throwable next = null) {
super(operation, file, line, next);
$ gdc --version
gdc (GCC) 12.2.0
Copyright (C) 2022 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
$ gdc gdcbug.d
gdcbug.d: In function ‘D main’:
gdcbug.d:40