https://bugs.kde.org/show_bug.cgi?id=387994

Milian Wolff <m...@milianw.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |CONFIRMED

--- Comment #3 from Milian Wolff <m...@milianw.de> ---
how did you "fix" it?

Anyway, easy to reproduce. Here's an MWE:


int sum(int foo, int bar) {
    return foo + bar;
}

auto sum_lambda = [](int foo, int bar) {
    return foo + bar;
};

int sum_lambda_wrapped(int bla, int blub)
{
    return [](int foo, int bar) {
        return foo + bar;
    }(bla, blub);
}

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to