
modules to preprocessing of nested .pcm files. Making those module files available results in loading more .pcm files than necessary, and potentially in misbehavior if a module makes itself visible during its own compilation (as parts of that module that have not yet been processed would then become visible). llvm-svn: 306320
8 lines
216 B
Plaintext
8 lines
216 B
Plaintext
module fwd { header "fwd.h" export * }
|
|
module file { header "file.h" header "file2.h" header "other.h" export * }
|
|
module nested {
|
|
module a { header "a.h" }
|
|
module b { header "b.h" }
|
|
module c { header "c.h" }
|
|
}
|