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