mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00: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>();
|
|
}
|