diff options
Diffstat (limited to 'clang/test/Modules/Inputs/namespaces-right.h')
| -rw-r--r-- | clang/test/Modules/Inputs/namespaces-right.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/namespaces-right.h b/clang/test/Modules/Inputs/namespaces-right.h index d103c00c820..b18aeb44786 100644 --- a/clang/test/Modules/Inputs/namespaces-right.h +++ b/clang/test/Modules/Inputs/namespaces-right.h @@ -39,3 +39,23 @@ namespace N9 { namespace N10 { int &f(int); } + + + + + + + +namespace N11 { + namespace { + class Foo; + } + void consumeFoo(Foo*); +} + +namespace N12 { + namespace { + class Foo; + } + void consumeFoo(Foo*); +} |

