Issue 80971
Summary ICE when explicit object parameter be a function parameter pack
Labels new issue
Assignees
Reporter hewillk
    ```cpp
struct S {
  auto f(this auto self...) {  }
};

int main() {
 S{}.f(0);
}
```
https://godbolt.org/z/bP8f6hzGs

llvm will crash with the above code, although I'm not sure if the code is well-formed.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to