blob: 0f241ae88e61adbd0ed08aa6c42747c46b12e257 [file] [log] [blame]
Douglas Gregorfedc3282009-09-18 22:15:54 +00001void f(int i, int j = 2, int k = 5);
Douglas Gregorba449032009-09-22 21:42:17 +00002void f(float x, float y...);
Douglas Gregorfedc3282009-09-18 22:15:54 +00003
4void test() {
Douglas Gregorea9b03e2009-09-22 21:11:38 +00005 ::
Sam McCallcf9b25e2022-12-16 15:59:11 +01006 // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):5 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
Erik Verbruggen11338c52017-07-19 10:45:40 +00007 // CHECK-CC1: f(<#int i#>{#, <#int j = 2#>{#, <#int k = 5#>#}#})
Douglas Gregor400f5972010-08-31 05:13:43 +00008 // CHECK-CC1: f(<#float x#>, <#float y, ...#>)