blob: 85a4788e76473f52cb199749595cf3467a213d94 [file] [log] [blame]
typedef int using_decl_type;
int using_decl_var;
namespace UsingDecl {
using ::using_decl_type;
using ::using_decl_var;
namespace A { typedef int inner; }
using A::inner;
}