freebsd-dev/test/Sema/return-silent.c

11 lines
141 B
C
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 %s -Wno-return-type -fsyntax-only -verify
// expected-no-diagnostics
2009-06-02 17:58:47 +00:00
int t14() {
return;
}
void t15() {
return 1;
}