bolt/deps/llvm-18.1.8/clang/test/Sema/Inputs/warn-unreachable.h

7 lines
179 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// 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
}