blob: d96cede68a61a56c0a057caf438090b64aa560a5 [file] [log] [blame]
// 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}}
}