1 // Copyright (C) 2003 Free Software Foundation
2 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
5 // Access checking during explicit instantiation.
8 typedef int X; // { dg-error "private" }
13 template <typename T> struct Y;
16 template <> struct X::Y<int> {
17 A::X x; // { dg-error "this context" }
20 template <typename T> struct X::Y {
21 typename T::X x; // { dg-error "this context" }
24 template struct X::Y<A>; // { dg-error "instantiated" }