brintos

brintos / llvm-project-archived public Read only

0
0
Text · 179 B · d39be8f Raw
7 lines · c
1// Test that this unreachable code warning is2// not reported because it is in a header.3 4void foo_unreachable_header(void) {5  return;6  foo_unreachable_header(); // no-warning7}