mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
We now output literals for accesses to members of template parameters:
So for `foo` in the following example:
```
template<typename T> void bar(T& t) {
T.foo(1)
}
```