2016-12-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash29.C
blob55953ed80100d559c5ff6f870f71313dc8e548cd
1 // PR c++/18512
3 template <int> struct A {};
5 struct B : A<0>
7   void foo() { this->A<0>; } // { dg-error "" }
8 };