http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00110.html
[official-gcc.git] / gcc / testsuite / g++.dg / parse / access1.C
blobf8994e39e3c71e53965faf7efd07faff9db7926b
1 // { dg-do compile }
3 // Origin: Volker Lukas <vlukas@gmx.de>
5 // PR c++/9554: Access checking for template ID as class head.
7 class enclose
9   template<typename T> struct enclosed;
12 template <>
13 struct enclose::enclosed<int>;