[AMDGPU][AsmParser][NFC] Get rid of custom default operand handlers.
[llvm-project.git] / clang / test / CXX / basic / basic.lookup / basic.lookup.qual / namespace.qual / p4.cpp
blob7c292d58f500e1b2bde89e763467a012a8a25838
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 namespace A {
5 int a;
8 namespace C {
9 int c;
12 namespace B {
13 using namespace C;
14 int b;
17 namespace C {
18 using namespace B;
19 using namespace A;
22 void test() {
23 C::a++;
24 C::b++;
25 C::c++;