1 | class T { }; |
---|---|
2 | |
3 | typedef int Integer; |
4 | |
5 | namespace N { } |
6 | |
7 | void f() { |
8 | typedef float Float; |
9 | |
10 | operator |
11 | // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:10:12 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s |
12 | // CHECK-CC1: + |
13 | // CHECK-CC1: Float |
14 | // CHECK-CC1: Integer |
15 | // CHECK-CC1: N |
16 | // CHECK-CC1: short |
17 | // CHECK-CC1: T |
18 |