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-cc -fsyntax-only -code-completion-at=%s:10:11 %s -o - | FileCheck -check-prefix=CC1 %s && 12 // CHECK-CC1: Float : 0 13 // CHECK-CC1: + : 0 14 // CHECK-CC1: short : 0 15 // CHECK-CC1: Integer : 2 16 // CHECK-CC1: T : 2 17 // CHECK-CC1: N : 5 18 // RUN: true 19