Files
codeql/cpp/ql/test/library-tests/templates/CPP-223/test.cpp
2018-08-02 17:53:23 +01:00

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);
};