Thread overview
[Issue 18136] ICE in dmd/statement.d(426)
Mar 15, 2018
greenify
Apr 04, 2018
Seb
Jul 05, 2019
Basile-z
Mar 21, 2020
Basile-z
March 15, 2018
https://issues.dlang.org/show_bug.cgi?id=18136

greenify <greeenify@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |greeenify@gmail.com

--- Comment #1 from greenify <greeenify@gmail.com> ---
>From Slack by @LemonBoy

> @wilzbach, 18136 is easy to fix, you just need to check out `visit(FuncDeclaration funcdecl)' in semantic3.d where it calls f.checkRetType. It seems you must call something that increases `global.errors` first such as `error()` before you're able to construct an ErrorStatement instance.

At the moment this triggers a different error in Phobos, so it would require a bit of work to reproduce it again as the underlying phobos code apparently changed.

https://run.dlang.io/is/w3u6Oz

--
April 04, 2018
https://issues.dlang.org/show_bug.cgi?id=18136

--- Comment #2 from Seb <greensunny12@gmail.com> ---
Reduced example without Phobos:


---
template ReturnType(func...)
{
    static if (is(FunctionTypeOf!func R ))
        alias ReturnType = R;
}

template FunctionTypeOf(func...)
{
    static if (is(typeof(func) T))
        static if (is(T Fptr ) )
        alias FunctionTypeOf = Fptr;
}

    enum isInputRange(R) =
is(ReturnType!((R r) => r.empty) )
    && is(typeof((R r) => r.popFront));


@property empty(T)(const(T) ){}


void popFront(T)(T) {}

template unaryFun(alias fun)
{
    alias unaryFun = fun;
}

template map(fun...)
{
    auto map(Range)(Range ) if (isInputRange!Range)
    {
        alias RE = Range;
        alias _fun = unaryFun!fun;
        !is(typeof(_fun(RE.init)) );
    }
}

auto joiner(){}

struct RegexMatch(R)
{
    void popFront(){}

    bool empty() { }
}

auto matchMany(RegEx, R)(R , RegEx ) {
    return RegexMatch!R();
}

auto matchAll(R, RegEx)(R input, RegEx re)
{
    return matchMany(input, re);
}

void main()
{
    string[] messages;

    auto issueRE = "foo";
    messages.map!(m => m.matchAll(issueRE).map);
}
---

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

Basile-z <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |b2.temp@gmx.com
         Resolution|---                         |WORKSFORME

--- Comment #3 from Basile-z <b2.temp@gmx.com> ---
this doesn't crash anymore.

--
March 21, 2020
https://issues.dlang.org/show_bug.cgi?id=18136

Basile-z <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|b2.temp@gmx.com             |

--