mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
12 lines
94 B
C++
12 lines
94 B
C++
|
#include "nscore.h"
|
||
|
|
||
|
struct NS_STACK_CLASS A
|
||
|
{
|
||
|
int i;
|
||
|
};
|
||
|
|
||
|
void* Foo()
|
||
|
{
|
||
|
return new A();
|
||
|
}
|