Sign in
rust
/
rust-lang
/
llvm-project
/
refs/heads/rustc/18.0-2024-02-13
/
.
/
clang-tools-extra
/
test
/
clang-tidy
/
checkers
/
misc
/
unused-using-decls.hxx
blob: f15e4fae80c0bc40a86cf47412213cabb5eaeaf3 [
file
] [
log
] [
blame
] [
edit
]
// 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
;