blob: 68aabca71eac681f6a3f5336991264467d3c9570 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Douglas Gregor6cc15182009-09-11 18:44:32 +00003
4void point(int = 3, int = 4);
5
6void test_point() {
7 point(1,2);
8 point(1);
9 point();
10}