xref: /minix3/external/bsd/llvm/dist/clang/test/CodeCompletion/operator.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 class T { };
2 
3 typedef int Integer;
4 
5 namespace N { }
6 
f()7 void f() {
8   typedef float Float;
9 
10   operator
11   // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:10:11 %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