I'm currently debugging an issue in our build where in variadic arguments, the number of arguments ain't as expected.
Currently my code looks similar to:
class CustomException : public BaseException
{
public:
template<typename ...T>
CustomException(T &&...args) : BaseException(std::forward<T>(args)...)
{
static_assert(sizeof...(T) == 2);
}
};
throw CustomException{size_t{}, size_t{}};
Based on this code, one would expect 2 arguments are being passed to the Ctor.
Surprisingly, this code does as expected with MSVC and fails on the static_assert with Clang.
Does any of you know a trick to force clang to reveal what it assumes the variadic argument pack is?
Edit Problem is related to copy construction that is required to throw, very specific to Clang-Cl
The problem on hand seems to be a compiler bug, logged as https://bugs.llvm.org/show_bug.cgi?id=38801
The full reproduction:
test.cpp
run.bat
error