bolt/deps/llvm-18.1.8/clang-tools-extra/test/clang-tidy/checkers/misc/unused-using-decls.hxx
2025-02-14 19:21:04 +01:00

6 lines
236 B
C++

// RUN: %check_clang_tidy %s misc-unused-using-decls %t -- --fix-notes -- -fno-delayed-template-parsing -isystem %S/Inputs
// Verify that we don't generate the warnings on header files.
namespace foo { class Foo {}; }
using foo::Foo;