brintos

brintos / llvm-project-archived public Read only

0
0
Text · 164 B · 68aabca Raw
11 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4void point(int = 3, int = 4);5 6void test_point() {7  point(1,2); 8  point(1); 9  point();10}11