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