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