Files
codeql/cpp/ql/test/library-tests/templates/CPP-172-template-members/test.ql
Matthew Gretton-Dann ddf1ef8a7d C++: Add new test case for template member change
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)
}
```
2019-11-07 14:08:25 +00:00

5 lines
36 B
Plaintext

import cpp
from Literal l
select l