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