aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/alias-decl-27.C
blob: 91208abf90eb9671f93b0fee4c33af85204bdca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Origin: PR c++/54875
// { dg-do compile { target c++11 } }

template<typename T>
using AddConst = T const;

enum FwdEnum : int;

int main() {
  AddConst<FwdEnum> *ptr = nullptr;
}