You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
195 B

typedef int using_decl_type;
int using_decl_var;
int merged;
namespace UsingDecl {
using ::using_decl_type;
using ::using_decl_var;
namespace A { typedef int inner; }
using A::inner;
}