My goal is to group imports together under a specific namespace and then re-export them.
For instance, if I have three files named A, B, and C, my desired outcome would look like this:
export module A.something {
export * from A;
}
export module B.something {
export * from B;
}
export module C.something {
export * from C;
}
But when I attempt to import them using this method, the module A.something
is created without containing any exports.