1framework module DependsOnModule {
2  umbrella "DependsOnModule.h"
3  header "other.h"
4  module * {
5    export *
6  }
7  explicit framework module SubFramework {
8    umbrella "SubFramework.h"
9
10    module * {
11      export *
12    }
13  }
14}
15