1 // PR c++/53658
2 // { dg-do compile { target c++11 } }
3 
4 struct A;
5 template <typename> using Foo = const A;
6 template <typename Item> Foo <Item> bar();
7