12436e711SDouglas Gregor namespace N { 22436e711SDouglas Gregor struct A { }; 32436e711SDouglas Gregor namespace M { 42436e711SDouglas Gregor struct C { }; 52436e711SDouglas Gregor }; 62436e711SDouglas Gregor } 72436e711SDouglas Gregor 82436e711SDouglas Gregor namespace N { 92436e711SDouglas Gregor struct B { }; 102436e711SDouglas Gregor } 112436e711SDouglas Gregor 12ea9b03e6SDouglas Gregor N:: 13*19ae1175STim Northover // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:12:4 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s 1452ce62f0SDouglas Gregor // CHECK-CC1: A 1552ce62f0SDouglas Gregor // CHECK-CC1: B 1652ce62f0SDouglas Gregor // CHECK-CC1: M 17ea9b03e6SDouglas Gregor 18