xref: /llvm-project/clang-tools-extra/test/clang-tidy/checkers/misc/unused-using-decls.hpp (revision f12018eba11f8d4b74cf67dbc416c429c870a5f4)
1 // RUN: %check_clang_tidy %s misc-unused-using-decls %t
2 
3 // Verify that we don't generate the warnings on header files.
4 namespace foo { class Foo {}; }
5 
6 using foo::Foo;
7