llvm-project/clang/test/Sema/return.c

13 lines
382 B
C

// RUN: clang-cc %s -fsyntax-only -verify
// clang emits the following warning by default.
// With GCC, -pedantic, -Wreturn-type or -Wall are required to produce the
// following warning.
int t14() {
return; // expected-warning {{non-void function 't14' should return a value}}
}
void t15() {
return 1; // expected-warning {{void function 't15' should not return a value}}
}