Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 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() { | ||||
Douglas Gregor | ea9b03e | 2009-09-22 21:11:38 +0000 | [diff] [blame] | 14 | using namespace |
Daniel Dunbar | 8fbe78f | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 15 | // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:14:20 %s -o - | FileCheck -check-prefix=CC1 %s |
Douglas Gregor | 52ce62f | 2010-01-13 23:24:38 +0000 | [diff] [blame] | 16 | // CHECK-CC1: I1 |
17 | // CHECK-CC1: I4 | ||||
18 | // CHECK-CC1: I5 | ||||
19 | // CHECK-CC1: N2 | ||||
20 | // CHECK-CC1-NEXT: N4 |