aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/scope1.C
blob: cfd9cdffb325f9f7037568a0e2da87bb8efb8b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't link:

template<class X, class Z>
class foo
{
public:
  typedef X y;

  class bar {
  public:
    void blah () { y Y; }
  };
};