[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeCompletion / call.cpp
blob394872612eef7a1c273542639c86bb4625ee98b4
1 // Note: the run lines follow their respective tests, since line/column
2 // matter in this test.
3 void f(float x, float y);
4 void f(int i, int j, int k);
5 struct X { };
6 void f(X);
7 namespace N {
8 struct Y {
9 Y(int = 0);
11 operator int() const;
13 void f(Y y, int ZZ);
15 typedef N::Y Y;
16 void f();
18 void test() {
19 f(Y(), 0, 0);
20 // RUN: %clang_cc1 -fsyntax-only -code-completion-patterns -code-completion-at=%s:%(line-1):9 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
21 // CHECK-CC1: f(Y y, <#int ZZ#>)
22 // CHECK-CC1-NEXT: f(int i, <#int j#>, int k)
23 // CHECK-CC1-NEXT: f(float x, <#float y#>)
24 // CHECK-CC1: COMPLETION: Pattern : dynamic_cast<<#type#>>(<#expression#>)
25 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-6):13 %s -o - | FileCheck -check-prefix=CHECK-CC2 %s
26 // CHECK-CC2-NOT: f(Y y, int ZZ)
27 // CHECK-CC2: f(int i, int j, <#int k#>)
28 f({}, 0, 0);
29 // RUN: %clang_cc1 -fsyntax-only -code-completion-patterns -code-completion-at=%s:%(line-1):7 %s -o - | FileCheck -check-prefix=CHECK-CC3 %s
30 // CHECK-CC3: OVERLOAD: [#void#]f()
31 // CHECK-CC3-NEXT: OVERLOAD: [#void#]f(<#X#>)
32 // CHECK-CC3-NEXT: OVERLOAD: [#void#]f(<#int i#>, int j, int k)
33 // CHECK-CC3-NEXT: OVERLOAD: [#void#]f(<#float x#>, float y)
36 void f(int, int, int, int);
37 template <typename T>
38 void foo(T t) {
39 f(t, t, t);
40 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):5 %s -o - | FileCheck -check-prefix=CHECK-CC4 %s
41 // CHECK-CC4: f()
42 // CHECK-CC4-NEXT: f(<#X#>)
43 // CHECK-CC4-NEXT: f(<#int i#>, int j, int k)
44 // CHECK-CC4-NEXT: f(<#float x#>, float y)
45 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-6):8 %s -o - | FileCheck -check-prefix=CHECK-CC5 %s
46 // CHECK-CC5-NOT: f()
47 // CHECK-CC5: f(int i, <#int j#>, int k)
48 // CHECK-CC5-NEXT: f(float x, <#float y#>)
49 f(5, t, t);
50 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):11 %s -o - | FileCheck -check-prefix=CHECK-CC6 %s
51 // CHECK-CC6-NOT: f(float x, float y)
52 // CHECK-CC6: f(int, int, <#int#>, int)
53 // CHECK-CC6-NEXT: f(int i, int j, <#int k#>)