[LLVM][NVPTX] Add support for griddepcontrol instruction (#123511)
[llvm-project.git] / clang / test / Modules / Inputs / Conflicts / module.modulemap
blobe6aafaccecc1718a834bcfa94740b0b24e488502
1 module Conflicts {
2   explicit module A {
3     header "conflict_a.h"
4     conflict B, "we just don't like B"
5   }
7   module B {
8     header "conflict_b.h"
9   }