Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.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 };