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
);
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#>)
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);
40 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):5 %s -o - | FileCheck -check-prefix=CHECK-CC4 %s
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
47 // CHECK-CC5: f(int i, <#int j#>, int k)
48 // CHECK-CC5-NEXT: f(float x, <#float y#>)
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#>)