#include "base.h"

FooNS::FooNS() : x(12345) {}

void FooNS::bar() {
    x = 54321;
}

