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

10 lines
118 B
C++

template <typename T>
int fn(T out) {
typedef int y[sizeof(out) + 1];
return 0;
}
int main() {
return fn(0);
}