Home | History | Annotate | Download | only in Sema
      1 // RUN: %clang_cc1 %s -Wno-return-type -fsyntax-only -verify
      2 // expected-no-diagnostics
      3 
      4 int t14() {
      5   return;
      6 }
      7 
      8 void t15() {
      9   return 1;
     10 }
     11