mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 14:28:54 -04:00

the "typed" text, first, then take into account nested-name-specifiers, name hiding, etc. This means that the resulting sort is actually alphabetical :) llvm-svn: 93370
18 lines
261 B
C++
18 lines
261 B
C++
namespace N {
|
|
struct A { };
|
|
namespace M {
|
|
struct C { };
|
|
};
|
|
}
|
|
|
|
namespace N {
|
|
struct B { };
|
|
}
|
|
|
|
N::
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:12:4 %s -o - | FileCheck -check-prefix=CC1 %s
|
|
// CHECK-CC1: A
|
|
// CHECK-CC1: B
|
|
// CHECK-CC1: M
|
|
|