1module a {
2  header "a.h"
3  // Hide content by not re-exporting module b.
4}
5
6module b {
7  header "b.h"
8  export *
9}
10