1 #include "base.h"
2 
FooNS()3 FooNS::FooNS() : x(12345) {}
4 
bar()5 void FooNS::bar() {
6     x = 54321;
7 }
8 
9