mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
225 B
C++
9 lines
225 B
C++
// semmle-extractor-options: --edg --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);
|
|
};
|