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