There was an error while loading. Please reload this page.
struct S { auto f(this auto self...) { } }; int main() { S{}.f(0); }
https://godbolt.org/z/bP8f6hzGs
Clang will crash with the above code. This should be a legal variadic function IMO.