1*f12018ebSCongcong Cai // RUN: %check_clang_tidy %s misc-unused-using-decls %t 2*f12018ebSCongcong Cai 3*f12018ebSCongcong Cai // Verify that we don't generate the warnings on header files. 4*f12018ebSCongcong Cai namespace foo { class Foo {}; } 5*f12018ebSCongcong Cai 6*f12018ebSCongcong Cai using foo::Foo; 7