xref: /llvm-project/clang/test/CodeGenCXX/2009-07-16-Using.cpp (revision 336a2bf4dd95554c70eb9737e21691efa04800b8)
1*336a2bf4SEric Christopher // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2*336a2bf4SEric Christopher 
3*336a2bf4SEric Christopher namespace A {
4*336a2bf4SEric Christopher   typedef int B;
5*336a2bf4SEric Christopher }
6*336a2bf4SEric Christopher struct B {
7*336a2bf4SEric Christopher };
8*336a2bf4SEric Christopher using ::A::B;
9