Thread overview
[Issue 20091] nogc callback inferred as non-nogc
Jul 29, 2019
Ali Ak
Dec 17, 2022
Iain Buclaw
July 29, 2019
https://issues.dlang.org/show_bug.cgi?id=20091

Steven Schveighoffer <schveiguy@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |schveiguy@yahoo.com
           Hardware|x86                         |All
                 OS|Mac OS X                    |All
           Severity|enhancement                 |normal

--
July 29, 2019
https://issues.dlang.org/show_bug.cgi?id=20091

--- Comment #1 from Ali Ak <ali.akhtarzada@gmail.com> ---
f's instantiation with untyped lambda:

f!(W!int)
{
        auto pure nothrow @safe string f(ref W!int value)
        {
                return (void*[2] __this3 = null;) , value.hook();
        }

}

With typed lambda:

f!(W!int)
{
        auto pure nothrow @nogc @safe string f(ref W!int value)
        {
                return value.hook();
        }

}

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=20091

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P3

--
December 13
https://issues.dlang.org/show_bug.cgi?id=20091

--- Comment #2 from dlangBugzillaToGithub <robert.schadek@posteo.de> ---
THIS ISSUE HAS BEEN MOVED TO GITHUB

https://github.com/dlang/dmd/issues/19603

DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB

--