mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
123 B
C++
15 lines
123 B
C++
#include "nscore.h"
|
|
|
|
template<class T>
|
|
struct NS_STACK_CLASS A
|
|
{
|
|
A();
|
|
|
|
T i;
|
|
};
|
|
|
|
void *Foo()
|
|
{
|
|
return new A<int>();
|
|
}
|