Home | History | Annotate | Download | only in Inputs
      1 typedef int using_decl_type;
      2 int using_decl_var;
      3 
      4 namespace UsingDecl {
      5   using ::using_decl_type;
      6   using ::using_decl_var;
      7 
      8   namespace A { typedef int inner; }
      9   using A::inner;
     10 }
     11