[Bug c++/93689] ICE with default argument in lambda used as non type template argument
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93689 --- Comment #3 from malle at umich dot edu --- @Marek Polacek do you (or anyone) think this is a good first issue? I am curious to try contributing.
[Bug c++/93689] New: ICE with default argument in lambda used as non type template argument
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: malle at umich dot edu Target Milestone: --- This code ``` template < auto Z = [](int l = int(0)) -> int { return l; } > int f() { return Z(); } int main() {