Issue 91232
Summary [Clang] Attribute `[[assume]]` accepts unexpanded pack
Labels clang:frontend, accepts-invalid
Assignees
Reporter Sirraide
    This code compiles, which means it looks like I forgot to check for unexpanded parameter packs here (https://godbolt.org/z/scafKKjsG):
```c++
template <bool ...val>
void f() { 
    [[assume(val)]]; 
}

```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to