aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/alias-decl-36.C
blob: dd3a422c2a230fe7c822bdb51d2c8290013e7be8 (plain)
1
2
3
4
5
6
// PR c++/53658
// { dg-do compile { target c++11 } }

struct A;
template <typename> using Foo = const A;
template <typename Item> Foo <Item> bar();