mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 21:55:31 +00:00
13 lines
111 B
C++
13 lines
111 B
C++
|
#include "nscore.h"
|
||
|
|
||
|
template<class T>
|
||
|
struct NS_FINAL_CLASS A
|
||
|
{
|
||
|
T i;
|
||
|
};
|
||
|
|
||
|
struct Bint : A<int>
|
||
|
{
|
||
|
int j;
|
||
|
};
|