mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
9 lines
219 B
C++
9 lines
219 B
C++
// semmle-extractor-options: --clang --edg --ms_extensions
|
|
|
|
template <int a> class b {
|
|
template <bool> struct c;
|
|
typedef typename c<!a>::d e;
|
|
template <bool> void f(e, int);
|
|
template <> void f<true>(e, int);
|
|
};
|