return-silent.c revision a5728872c7702ddd09537c95bc3cbd20e1f2fb09
1// RUN: %clang_cc1 %s -Wno-return-type -fsyntax-only -verify
2
3int t14() {
4  return;
5}
6
7void t15() {
8  return 1;
9}
10