05ba8a3a07
git-svn-id: http://root.cern.ch/svn/root/trunk@45844 27541ba8-7e3a-0410-8455-c3a389f83636
11 lines
171 B
C
11 lines
171 B
C
extern "C" int printf(const char*,...);
|
|
|
|
struct B {
|
|
struct S {
|
|
S() { printf("B::S()\n"); }
|
|
~S() { printf("B::~S()\n"); }
|
|
};
|
|
static S s;
|
|
};
|
|
B::S B::s;
|