blob: f722e9a07e33bfa878387db12fb0e19d7304f250 [file] [log] [blame]
Douglas Gregore6e03612009-09-18 22:15:54 +00001// RUN: clang-cc -fsyntax-only -code-completion-dump=1 %s -o - | FileCheck -check-prefix=CC1 %s &&
2// RUN: true
3void f(int i, int j = 2, int k = 5);
4void f(float x, float y);
5
6void test() {
7 // CHECK-CC1: f(<#int i#>{#, <#int j#>{#, <#int k#>#}#})
8 // CHECK-CC1: f(<#float x#>, <#float y#>)
9 ::