aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/using-decl-a.h
blob: 85a4788e76473f52cb199749595cf3467a213d94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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;
}