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