• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Test that this unreachable code warning is
2 // not reported because it is in a header.
3 
foo_unreachable_header()4 void foo_unreachable_header() {
5   return;
6   foo_unreachable_header(); // no-warning
7 }