blob: 85a4788e76473f52cb199749595cf3467a213d94 [file] [log] [blame]
Richard Smithfd8634a2013-10-23 02:17:46 +00001typedef int using_decl_type;
2int using_decl_var;
3
4namespace UsingDecl {
5 using ::using_decl_type;
6 using ::using_decl_var;
7
8 namespace A { typedef int inner; }
9 using A::inner;
10}