1 #include "warn-static-function-inheader.h" 2 // RUN: %clang_cc1 -fsyntax-only -verify -Wall %s 3 another(void)4static void another(void) { // expected-warning {{function 'another' is not needed and will not be emitted}} 5 } 6 7 template <typename T> foo(void)8void foo(void) { 9 thing(); 10 another(); 11 } 12