1 2 3 4 5 6 7 8 9 10 11
export module foobar; #if defined(FOO) import foo; namespace impl = foo; #else import bar; namespace impl = bar; #endif export void hello() { impl::hello(); }