1 class FooNS
2 {
3 public:
4     virtual void bar();
5     virtual char baz() = 0;
6 
7 protected:
8     FooNS();
9 
10     int x;
11 };
12 
13