diff options
Diffstat (limited to 'test/FrontendC++/2009-07-16-Using.cpp')
-rw-r--r-- | test/FrontendC++/2009-07-16-Using.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/FrontendC++/2009-07-16-Using.cpp b/test/FrontendC++/2009-07-16-Using.cpp new file mode 100644 index 0000000..1acadf6 --- /dev/null +++ b/test/FrontendC++/2009-07-16-Using.cpp @@ -0,0 +1,8 @@ +// RUN: %llvmgxx %s -S + +namespace A { + typedef int B; +} +struct B { +}; +using ::A::B; |