bolt/deps/llvm-18.1.8/clang/test/Sema/Inputs/warn-unreachable.h
2025-02-14 19:21:04 +01:00

7 lines
No EOL
179 B
C

// Test that this unreachable code warning is
// not reported because it is in a header.
void foo_unreachable_header(void) {
return;
foo_unreachable_header(); // no-warning
}