jcsxky wrote:

Still crash on
```cpp
template<auto F> constexpr auto x = F();
template<class> constexpr int a() { return 1; }

template <class>
struct A {
    using Func = decltype(
    []<class T>(T) {
        return x<[] constexpr { return a<T>(); }>;
        // return x<[] constexpr { return b(); }>;
    }.template operator()<unsigned long long>('2')
    );
};
A<short>::Func y;
```

https://github.com/llvm/llvm-project/pull/82310
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to