2009-09-19 06:15:54 +08:00
|
|
|
void f(int i, int j = 2, int k = 5);
|
2009-09-23 05:42:17 +08:00
|
|
|
void f(float x, float y...);
|
2009-09-19 06:15:54 +08:00
|
|
|
|
|
|
|
void test() {
|
2009-09-23 05:11:38 +08:00
|
|
|
::
|
2013-08-12 20:51:05 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:5:5 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
|
2017-07-19 18:45:40 +08:00
|
|
|
// CHECK-CC1: f(<#int i#>{#, <#int j = 2#>{#, <#int k = 5#>#}#})
|
2010-08-31 13:13:43 +08:00
|
|
|
// CHECK-CC1: f(<#float x#>, <#float y, ...#>)
|