mizvekov wrote:

Hello, sorry I missed your earlier notification.

Your test case further reduces to: https://godbolt.org/z/q6ndebaeW
```C++
template <char> struct Traits { using Type = Traits; };

template <char... ArgType> void FillVRegs(typename Traits<ArgType>::Type...);
template <char FirstArgType> void FillVRegs(typename 
Traits<FirstArgType>::Type);

void foo() { FillVRegs<'A'>(Traits<'A'>()); }
```

I believe Clang and GCC are correct to reject this, we can't partial order 
`FillVRegs` because we can't deduce anything from the function arguments.

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

Reply via email to