summaryrefslogtreecommitdiffstats
path: root/test/Sema/return-silent.c
blob: eb9641b7f3bec92a9056e093edd80346fab6702a (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 %s -Wno-return-type -fsyntax-only -verify

int t14() {
  return;
}

void t15() {
  return 1;
}