mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
196 B
C++
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);
|
|
}
|