repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeCompletion
/
using.cpp
blob
e4f2955e4ff646f1a66f7e005bc409c710e0b670
1
namespace
N4
{
2
namespace
N3
{ }
3
}
4
5
class
N3
;
6
7
namespace
N2
{
8
namespace
I1
{ }
9
namespace
I4
=
I1
;
10
namespace
I5
{ }
11
namespace
I1
{ }
12
13
void
foo
() {
14
int
N3
;
15
16
using
17
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):11 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
18
// CHECK-CC1: I1
19
// CHECK-CC1: I4
20
// CHECK-CC1: I5
21
// CHECK-CC1: N2
22
// CHECK-CC1: N3
23
// CHECK-CC1-NEXT: N4
24