1 // PR c++/84770
2 // { dg-do compile { target c++11 } }
3 
4 typedef int T;
5 
6 template<T&...> struct A {};
7 
8 int i;
9 
10 A<i> a;
11