llvm-project/clang/test/Modules/Inputs/dependency-gen-base.modulemap
Richard Smith 54cc3c2f23 [modules] When constructing paths relative to a module, strip out /./ directory
components. These sometimes get synthetically added, and we don't want -Ifoo
and -I./foo to be treated fundamentally differently here.

llvm-svn: 224055
2014-12-11 20:50:24 +00:00

7 lines
164 B
Plaintext

module "test-base" {
export *
header "Inputs/dependency-gen-included.h"
use "test-base2"
}
extern module "test-base2" "Inputs/dependency-gen-base2.modulemap"