In r298391 we fixed the umbrella framework model to work when submodules named "Private" are used. This complements the work by allowing the umbrella framework model to work in general. rdar://problem/31790067 llvm-svn: 302491
13 lines
212 B
Plaintext
13 lines
212 B
Plaintext
framework module MainA_Private {
|
|
umbrella header "MainPriv.h"
|
|
|
|
module * { export * }
|
|
export *
|
|
|
|
explicit framework module Sub {
|
|
umbrella header "SubPriv.h"
|
|
module * { export * }
|
|
export *
|
|
}
|
|
}
|