2009-09-22 21:11:38 +00:00
|
|
|
// Note: the run lines follow their respective tests, since line/column
|
|
|
|
|
// matter in this test.
|
2009-09-22 15:41:20 +00:00
|
|
|
void f(float x, float y);
|
|
|
|
|
void f(int i, int j, int k);
|
|
|
|
|
struct X { };
|
|
|
|
|
void f(X);
|
|
|
|
|
namespace N {
|
|
|
|
|
struct Y {
|
|
|
|
|
Y(int = 0);
|
|
|
|
|
|
|
|
|
|
operator int() const;
|
|
|
|
|
};
|
2009-09-23 00:16:58 +00:00
|
|
|
void f(Y y, int ZZ);
|
2009-09-22 15:41:20 +00:00
|
|
|
}
|
|
|
|
|
typedef N::Y Y;
|
|
|
|
|
void f();
|
|
|
|
|
|
|
|
|
|
void test() {
|
2009-09-22 21:11:38 +00:00
|
|
|
f(Y(), 0, 0);
|
2013-08-12 12:51:05 +00:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-patterns -code-completion-at=%s:19:9 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
|
2010-05-28 00:22:41 +00:00
|
|
|
// CHECK-CC1: COMPLETION: Pattern : dynamic_cast<<#type#>>(<#expression#>)
|
2017-11-08 10:39:09 +00:00
|
|
|
// CHECK-CC1: f(Y y, <#int ZZ#>)
|
2009-09-23 14:56:09 +00:00
|
|
|
// CHECK-CC1-NEXT: f(int i, <#int j#>, int k)
|
|
|
|
|
// CHECK-CC1-NEXT: f(float x, <#float y#>)
|
2013-08-12 12:51:05 +00:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:19:13 %s -o - | FileCheck -check-prefix=CHECK-CC2 %s
|
2017-11-08 10:39:09 +00:00
|
|
|
// CHECK-CC2-NOT: f(Y y, int ZZ)
|
2009-09-23 00:34:09 +00:00
|
|
|
// CHECK-CC2: f(int i, int j, <#int k#>)
|
2009-09-22 21:11:38 +00:00
|
|
|
}
|