brintos

brintos / llvm-project-archived public Read only

0
0
Text · 191 B · 080229b Raw
12 lines · c
1/* RUN: %clang_cc1 -std=c89 -fsyntax-only -verify -Wno-strict-prototypes -Wmain-return-type %s2 */3 4/* expected-no-diagnostics */5 6void exit(int);7 8int main() {9    if (1)10        exit(1);11}12