cor3ntin added a comment.

In D119544#3458848 <https://reviews.llvm.org/D119544#3458848>, @erichkeane 
wrote:

> I went to commit this, and found that a recently lit test now fails with a 
> crash during constraint instantiation!  I'll be looking into that.  The 
> example reduces to:
>
>   template<typename T>
>   constexpr bool constraint = true;
>    
>   template < typename U>
>   void dependent(U&& u) {
>     []() requires constraint<decltype(u)> {}();
>   }
>    
>   void test_dependent() {
>     int v   = 0;
>     dependent(v);
>   }

I suspect this may be related to my recent lambda changes - not 100% certain 
but I'm looking into it too


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D119544/new/

https://reviews.llvm.org/D119544

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to