1 //===--- include_with_using-d5.h - test input file for iwyu ---------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 namespace ns5 {
11 class PtrInNs5 {};
12 }
13 // This using decl won't be used because it's not in the right namespace
14 namespace ns_unused {
15 using ns5::PtrInNs5;
16 }
17