mirror of
https://github.com/github/codeql.git
synced 2026-04-14 03:24:06 +02: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)
}
```