Files
codeql/cpp/ql/test/library-tests/syntax-zoo/CPP-309.cpp
2019-08-06 14:10:25 +02:00

13 lines
196 B
C++

typedef unsigned long size_t;
void * operator new[](size_t count, int arg1, int arg2);
template<typename T>
void callNew(T arg) {
new(2, 3) int[5];
}
void callCallNew() {
callNew(1);
}