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