• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 %s -Wno-return-type -fsyntax-only -verify
2 
t14()3 int t14() {
4   return;
5 }
6 
t15()7 void t15() {
8   return 1;
9 }
10