summaryrefslogtreecommitdiffstats
path: root/test/Modules/Inputs/nested-template-default-arg-redecl/alias.h
blob: cff3329ce14f450c1d7fb77100feae67ae7a8a47 (plain)
1
2
3
4
5
6
7
#ifndef ALIAS_H
#define ALIAS_H
struct alias_outer {
  template <typename = int>
  using alias = int;
};
#endif