Thread overview
[Issue 24891] Two scope attributes emitted as part of .di generation
Dec 05
Dlang Bot
Dec 05
Dlang Bot
December 05
https://issues.dlang.org/show_bug.cgi?id=24891

--- Comment #1 from Richard (Rikki) Andrew Cattermole <alphaglosined@gmail.com> ---
Another example:

```d
@disable this(ref return scope const typeof(this) other) scope const;
```

Into:

```d
scope @disable const scope this(ref return scope const typeof(this) other);
```

And:

```d
export:
nothrow @safe:
@disable this(ref return scope typeof(this) other) @safe scope const;
```

Into:

```d
export
{
    nothrow @safe
    {
        scope @nogc scope @trusted this(ref return scope typeof(this) other);
    }
}
```

--
December 05
https://issues.dlang.org/show_bug.cgi?id=24891

Dlang Bot <dlang-bot@dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull

--- Comment #2 from Dlang Bot <dlang-bot@dlang.rocks> ---
@dkorpel created dlang/dmd pull request #17105 "Fix bugzilla 24891 - Two scope attributes emitted as part of .di gene…" fixing this issue:

- Fix bugzilla 24891 - Two scope attributes emitted as part of .di generation

https://github.com/dlang/dmd/pull/17105

--
December 05
https://issues.dlang.org/show_bug.cgi?id=24891

Dominikus Dittes Scherkl <dominikus@scherkl.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dominikus@scherkl.de

--- Comment #3 from Dominikus Dittes Scherkl <dominikus@scherkl.de> ---
Why are still issues created on bugzilla?
I thought everything should now use the git repository. Or what else was the
plan with the migration?

--
December 05
https://issues.dlang.org/show_bug.cgi?id=24891

Dlang Bot <dlang-bot@dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Dlang Bot <dlang-bot@dlang.rocks> ---
dlang/dmd pull request #17105 "Fix bugzilla 24891 - Two scope attributes emitted as part of .di gene…" was merged into master:

- 869ed9c6b9e4622e3cce1906264b13ee15b4b004 by Dennis Korpel:
  Fix bugzilla 24891 - Two scope attributes emitted as part of .di generation

https://github.com/dlang/dmd/pull/17105

--
December 05
https://issues.dlang.org/show_bug.cgi?id=24891

Nick Treleaven <nick@geany.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nick@geany.org

--- Comment #5 from Nick Treleaven <nick@geany.org> ---
@Dominikus Dittes Scherkl - only Phobos issues have moved to GH.

--