brintos

brintos / llvm-project-archived public Read only

0
0
Text · 324 B · f1ee372 Raw
6 lines · c
1// RUN: %clang_cc1 -Wreturn-type -std=c99 -fsyntax-only -verify=c99 %s2// RUN: %clang_cc1 -Wreturn-type -std=c90 -fsyntax-only -verify=c90 %s3 4int foo(void) { return; } // c99-error {{non-void function 'foo' should return a value}}5                          // c90-error@-1 {{non-void function 'foo' should return a value}}6