1 // PR c++/35316
2 // { dg-do compile { target c++11 } }
3 
4 template<int> struct A
5 {
6   int i : 2;
7 
fooA8   void foo()
9   {
10     decltype(i) j;
11   }
12 };
13