2009-09-19 02:15:54 +04:00
|
|
|
void f(int i, int j = 2, int k = 5);
|
2009-09-23 01:42:17 +04:00
|
|
|
void f(float x, float y...);
|
2009-09-19 02:15:54 +04:00
|
|
|
|
|
|
|
void test() {
|
2009-09-23 01:11:38 +04:00
|
|
|
::
|
2009-12-15 23:14:24 +03:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:5:5 %s -o - | FileCheck -check-prefix=CC1 %s
|
2009-09-19 02:15:54 +04:00
|
|
|
// CHECK-CC1: f(<#int i#>{#, <#int j#>{#, <#int k#>#}#})
|
2010-08-31 09:13:43 +04:00
|
|
|
// CHECK-CC1: f(<#float x#>, <#float y, ...#>)
|