diff options
Diffstat (limited to 'clang/test/Modules/Inputs/DebugNestedB.h')
-rw-r--r-- | clang/test/Modules/Inputs/DebugNestedB.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/DebugNestedB.h b/clang/test/Modules/Inputs/DebugNestedB.h new file mode 100644 index 00000000000..7f75d0946e2 --- /dev/null +++ b/clang/test/Modules/Inputs/DebugNestedB.h @@ -0,0 +1,7 @@ +/* -*- C++ -*- */ +#include "DebugNestedA.h" +class C { + void run(AF &af) { + af.f(); + } +}; |