Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / inherit.C
blob43af3cfc5ac622a8ee3a22ddd6b8342edb11a74a
1 // Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
2 // { dg-do compile }
4 template<typename T>
5 struct X { void f() { } };
7 struct Z : X<int> { };
9 int main()
11   Z z;
12   z.X::f();