mirror of
https://github.com/github/codeql.git
synced 2026-01-24 03:42:59 +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)
}
```