[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeCompletion / operator.cpp
blob1fb46ca1976414073cde87e187eb696f02bc051f
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:%(line-1):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