Home | History | Annotate | Download | only in dcl.fct.default
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 void point(int = 3, int = 4);
      4 
      5 void test_point() {
      6   point(1,2);
      7   point(1);
      8   point();
      9 }
     10