mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
154 B
C++
13 lines
154 B
C++
#include <new>
|
|
#include "nscore.h"
|
|
|
|
struct NS_STACK_CLASS A
|
|
{
|
|
};
|
|
|
|
void foo() {
|
|
A* a;
|
|
void* v = ::operator new(16);
|
|
a = (A*) v; // tricks analysis
|
|
}
|