blob: f1ee3722af489a660874d8ee89e26da87027eb0a [file] [log] [blame]
// RUN: %clang_cc1 -Wreturn-type -std=c99 -fsyntax-only -verify=c99 %s
// RUN: %clang_cc1 -Wreturn-type -std=c90 -fsyntax-only -verify=c90 %s
int foo(void) { return; } // c99-error {{non-void function 'foo' should return a value}}
// c90-error@-1 {{non-void function 'foo' should return a value}}