don't use #pragma mark, it isn't portable.
[clang.git] / test / CodeCompletion / operator.cpp
blob05cd7684ad2c9467099f6023e3b79e8fe187d86d
1 class T { };
3 typedef int Integer;
5 namespace N { }
7 void f() {
8 typedef float Float;
10 operator
11 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:10:11 %s -o - | FileCheck -check-prefix=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