diff options
Diffstat (limited to 'clang/test/Modules/Inputs/namespaces-top.h')
-rw-r--r-- | clang/test/Modules/Inputs/namespaces-top.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/namespaces-top.h b/clang/test/Modules/Inputs/namespaces-top.h new file mode 100644 index 00000000000..a69f43f1833 --- /dev/null +++ b/clang/test/Modules/Inputs/namespaces-top.h @@ -0,0 +1,11 @@ +namespace N1 { + int& f(int); +} + +namespace N2 { + int& f(int); +} + +namespace N3 { + int& f(int); +} |