brintos

brintos / llvm-project-archived public Read only

0
0
Text · 326 B · 0f241ae Raw
9 lines · cpp
1void f(int i, int j = 2, int k = 5);2void f(float x, float y...);3       4void test() {5  ::6  // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):5 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s7  // CHECK-CC1: f(<#int i#>{#, <#int j = 2#>{#, <#int k = 5#>#}#})8  // CHECK-CC1: f(<#float x#>, <#float y, ...#>)9