brintos

brintos / llvm-project-archived public Read only

0
0
Text · 149 B · 720128d Raw
11 lines · c
1// RUN: %clang_cc1 %s -Wno-return-type -fsyntax-only -verify2// expected-no-diagnostics3 4int t14(void) {5  return;6}7 8void t15(void) {9  return 1;10}11