llvm/clang-tools-extra/test/clang-tidy/checkers/misc/unused-using-decls.hpp

// RUN: %check_clang_tidy %s misc-unused-using-decls %t

// Verify that we don't generate the warnings on header files.
namespace foo { class Foo {}; }

using foo::Foo;