False positive - tuple unpacking bracket detected as variable
Open
false-positive
- Dominant language
- CodeQL
- Stars
- 10.1k
- Forks
- 2.1k
- Avg merge
- 2d 15h
- Merged PRs (30d)
- 141
Description
**Description of the false positive**
tuple unpack left bracket detected as variable.

https://github.com/PhilipDeegan/PHARE/security/code-scanning/913
**Code samples or links to source code**
```c++
#include
void fn(std::tuple, std::tuple> const& tup){
auto const& [A,B] = tup;
auto const& [a0, a1, a2] a = A;
auto const& [b0, b1, b2] a = B;
// do something with a/b vals...
}
```
Contributor guide
Assessment
This issue has not been assessed yet.