1 // PR c++/16904
2 
3 template<typename T> struct X
4 {
XX5   X() { this->T::i; } // { dg-error "" }
6 };
7 
8 X<int> x;
9