Templated lambda ends up with dependent type in C++11 #113792
Labels
clang:frontend
Language frontend issues, e.g. anything involving "Sema"
lambda
C++11 lambda expressions
This is an issue for the bug from #108598
This code:
ends up with a dependent type that we assert on in codegen.
This starts when we deduce the type of the call operator, which is dependent in C++11 but
auto
in later versions:llvm-project/clang/lib/Sema/SemaType.cpp
Lines 958 to 973 in 7b88e75
and we never seem to clean this up.
The text was updated successfully, but these errors were encountered: