OSDN Git Service

Revert XFAIL removal.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / scope1.C
1 // Build don't link:
2
3 template<class X, class Z>
4 class foo
5 {
6 public:
7   typedef X y;
8
9   class bar {
10   public:
11     void blah () { y Y; }
12   };
13 };